:root {
  color-scheme: light;
  --bg: #f4f5f8;
  --text: #090909;
  --muted: #666a73;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

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

.landing {
  width: min(1440px, calc(100vw - 32px));
  min-height: 100svh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(24px, 4vw, 42px) 0 24px;
}

.copy {
  width: min(520px, 100%);
  text-align: center;
}

.app-icon {
  display: block;
  width: 108px;
  height: 108px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .16);
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.48;
}

p + p {
  margin-top: 12px;
}

.download {
  display: inline-block;
  margin-top: 26px;
}

.download img {
  display: block;
  width: 150px;
  height: auto;
}

.hero-image {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 5vw, 54px);
}

.hero-image img {
  display: block;
  width: min(122%, 1360px);
  max-height: 60svh;
  object-fit: contain;
}

.footer {
  margin-top: auto;
  padding-top: 28px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 680px) {
  .landing {
    width: min(100vw - 28px, 520px);
  }

  .hero-image img {
    width: min(128%, 680px);
    max-height: 46svh;
  }

  .copy {
    width: min(100%, 440px);
  }

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

  h1 {
    font-size: clamp(28px, 9vw, 34px);
  }

  p {
    font-size: 15px;
  }
}
