:root {
  color: #15222a;
  background: #f5f7f8;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
}

.page {
  min-height: 100vh;
}

.hero {
  align-items: center;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  min-height: 76vh;
  padding: 56px max(28px, calc((100vw - 1180px) / 2)) 44px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  color: #b8572a;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  color: #0b3438;
  font-size: clamp(52px, 8vw, 92px);
  letter-spacing: 0;
  line-height: 0.95;
  margin: 0;
}

.lead {
  color: #42535f;
  font-size: 19px;
  line-height: 1.58;
  margin: 22px 0 0;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.download {
  align-items: center;
  background: #0f7a7a;
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-weight: 750;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
}

.download:hover {
  background: #0b6666;
}

.actions span {
  color: #647482;
  font-size: 14px;
}

.product-shot {
  background: #ffffff;
  border: 1px solid #dce7ea;
  border-radius: 8px;
  box-shadow: 0 28px 84px rgb(31 80 83 / 14%);
  min-height: 420px;
  overflow: hidden;
}

.app-top {
  align-items: center;
  border-bottom: 1px solid #e4ecef;
  display: grid;
  gap: 12px;
  grid-template-columns: 18px 1fr auto;
  min-height: 54px;
  padding: 0 18px;
}

.app-top span {
  background: #0f7a7a;
  border-radius: 999px;
  height: 12px;
  width: 12px;
}

.app-top strong {
  color: #0b3438;
  font-size: 18px;
}

.app-top em {
  color: #647482;
  font-style: normal;
  font-size: 13px;
}

.app-body {
  display: grid;
  gap: 14px;
  grid-template-columns: 0.75fr 1.35fr 0.95fr;
  min-height: 365px;
  padding: 16px;
}

.app-body aside,
.app-body section {
  background: #f8fafb;
  border: 1px solid #e2eaed;
  border-radius: 8px;
  padding: 12px;
}

.app-body aside:first-child,
.app-body section {
  display: grid;
  gap: 10px;
  align-content: start;
}

.app-body aside:first-child div,
.app-body section article,
.app-body aside:last-child h2,
.app-body aside:last-child p,
.app-body aside:last-child div {
  background: #dfe8eb;
  border-radius: 6px;
}

.app-body aside:first-child div {
  height: 62px;
}

.app-body section article {
  height: 88px;
}

.app-body aside:last-child h2 {
  height: 38px;
  margin: 0 0 14px;
}

.app-body aside:last-child p {
  height: 16px;
  margin: 10px 0;
}

.app-body aside:last-child div {
  height: 110px;
  margin-top: 20px;
}

.features {
  border-top: 1px solid #dfe7ea;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 28px max(28px, calc((100vw - 1180px) / 2)) 52px;
}

.features article {
  min-width: 0;
}

.features h2 {
  color: #17202a;
  font-size: 18px;
  letter-spacing: 0;
  margin: 0 0 8px;
}

.features p {
  color: #52636e;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 34px;
  }

  .product-shot {
    min-height: 320px;
  }

  .app-body {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .app-body aside:last-child {
    display: none;
  }

  .features {
    grid-template-columns: 1fr;
  }
}
