:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #111418;
  color: #f4f7f6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(145deg, rgba(108, 198, 184, 0.16), transparent 38%),
    linear-gradient(315deg, rgba(55, 83, 138, 0.22), transparent 42%),
    #111418;
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0;
}

.hero {
  min-height: 72vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: #7fd7c7;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(44px, 8vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.summary {
  max-width: 560px;
  color: #cad3d2;
  font-size: 20px;
  line-height: 1.5;
}

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

.download,
.secondary {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}

.download {
  background: #77d4c4;
  color: #0c1415;
}

.secondary {
  border: 1px solid rgba(244, 247, 246, 0.24);
  color: #eef4f3;
}

.device {
  width: min(100%, 380px);
  aspect-ratio: 0.72;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: 16px;
  background: #20262c;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.device-top {
  width: 72px;
  height: 6px;
  margin: 0 auto 14px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.2);
}

.screen {
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(160deg, rgba(119, 212, 196, 0.16), transparent 46%),
    #13181d;
  text-align: center;
  padding: 24px;
}

.app-icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  background: #77d4c4;
  color: #101416;
  font-size: 44px;
  font-weight: 800;
}

.screen h2 {
  margin-bottom: 6px;
  font-size: 30px;
}

.screen p {
  margin-bottom: 28px;
  color: #aebbbb;
}

.screen-line {
  width: 64%;
  height: 12px;
  margin-bottom: 12px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.screen-line.wide {
  width: 82%;
}

.screen-button {
  width: 52%;
  height: 42px;
  margin-top: 12px;
  border-radius: 8px;
  background: rgba(119, 212, 196, 0.9);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0 0 34px;
}

article {
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

article span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: #77d4c4;
  color: #101416;
  font-weight: 800;
}

article h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

article p {
  color: #c1cbca;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 24px 0 32px;
  }

  .device {
    width: min(100%, 320px);
  }

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