* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  min-width: 0;
}

html {
  font-family: system-ui, sans-serif;
  color: #141b2d;
  background-color: #eef1f7;
}

.content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

header {
  padding: 30px 0;
  background: rgba(247, 248, 251, 0.9);
  border-bottom: 1px solid rgba(224, 165, 30, 0.18);
}

h1 {
  display: inline-block;
  font-size: 2em;
  font-weight: 900;
  color: #b77b12;
}

main {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding: 80px 0;
  background:
    radial-gradient(circle at top center, rgba(255, 227, 106, 0.38), transparent 38%),
    linear-gradient(to bottom, #f8f4e8, #eef1f7 48%, #edf1f6 100%);
  background-size: 100% 600px;
  background-repeat: no-repeat;
  padding-bottom: 150px;
}

.main-columns {
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  gap: 200px;
}

.main-texts {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.headline {
  font-size: 4em;
}

.subheadline {
  font-size: 1.2em;
  line-height: 1.5em;
  font-weight: 300;
  color: #596174;
}

.badges {
  display: flex;
  gap: 20px;
}

.badges img {
  height: 57px;
}

.screenshots {
  position: relative;
  width: 300px;
}

.iphone {
  position: absolute;
  inset: -25px;
  width: 350px;
}

.screenshot-view {
  overflow: hidden;
  display: flex;
  aspect-ratio: 0.4615;
  width: 296px;
  border-radius: 40px;
  /* background-color: red; */
  margin: 2px;
}

.screenshot {
  min-width: 100%;
  height: 100%;
  /* opacity: 0.5; */
}

.qrcode {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background: linear-gradient(180deg, #ffe88a 0%, #f7c53a 100%);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(20, 27, 45, 0.06);

  img {
    width: 230px;
    padding: 5px;
    border-radius: 40px;
    border: 4px solid #e0a51e;
    background: #fffdf6;
  }

  p {
    font-weight: 600;
    font-size: 1.5em;
    letter-spacing: 0.1em;
    color: #141b2d;
  }
}

@media screen and (max-width: 1150px) {
  .content {
    max-width: 800px;
  }

  .main-columns {
    gap: 70px;
  }
}

@media screen and (max-width: 880px) {
  header > .content {
    display: flex;
    justify-content: center;
  }

  .content {
    max-width: 100%;
    padding: 0 25px;
  }

  main {
    padding-top: 50px;
  }

  .main-columns {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .main-texts {
    align-items: center;
    text-align: center;
  }

  .headline {
    font-size: 2.25em;
  }

  .subheadline {
    font-size: 1.1em;
  }

  .badges {
    align-items: center;
  }
}
