:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #6f6fe8;
  color: #fff;
}

a {
  color: inherit;
}

.landing {
  background: #6f6fe8 url("/assets/hero-bg.png") center top / cover no-repeat;
  text-align: center;
}

.intro,
.download {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-inline: 24px;
}

.intro {
  min-height: 80vh;
  justify-content: center;
  padding-block: 48px;
}

.app-logo {
  width: 200px;
  max-width: 48vw;
  margin-bottom: 22px;
}

.intro-copy {
  max-width: 640px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 5vw, 56px);
  line-height: 0.95;
}

h2 {
  font-size: 24px;
}

p {
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.55;
}

.download {
  min-height: 370px;
  padding-block: 0 34px;
}

.contact {
  display: flex;
  flex-direction: column;
  margin-bottom: 76px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.contact a,
.site-footer a {
  text-decoration: none;
}

.store-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.store-badge {
  display: block;
  line-height: 0;
}

.store-badge img {
  height: 56px;
  width: auto;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  padding: 24px;
  background: #3d3d3d;
  color: #fafafa;
  font-size: 14px;
}

.legal-page {
  min-height: 100vh;
  background: #fff;
  color: #222;
}

.legal-header {
  padding: 20px 24px;
  background: #6f6fe8;
  color: #fff;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.legal-content {
  max-width: 860px;
  min-height: calc(100vh - 130px);
  margin: auto;
  padding: 54px 24px 72px;
  font-size: 16px;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .intro {
    min-height: 700px;
  }

  .app-logo {
    width: 170px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 21px;
  }

  p {
    font-size: 18px;
  }

  .contact {
    margin-bottom: 72px;
    font-size: 18px;
  }
}
