/* =========================
   MOBILE APP PAGE
   ========================= */



/* =========================
   HERO
   ========================= */

.app-hero{
  position: relative;
  padding: 82px 0 54px;
  overflow: hidden;
}

.app-hero__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 60% at 55% 20%, rgba(92,200,217,.20) 0%, rgba(11,13,16,0) 60%),
    radial-gradient(70% 70% at 15% 25%, rgba(65,226,251,.10) 0%, rgba(11,13,16,0) 55%),
    linear-gradient(to bottom, rgba(7,9,11,.45), rgba(11,13,16,1));
}

.app-hero__inner{
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
}

.app-hero__mark{
  width: 38px;
  height: 38px;
  display: block;
  margin-bottom: 14px;
}

.app-kicker{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.80);
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 12px;
}

.app-hero h1{
  color: #fff;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}

.app-hero__lead{
  color: rgba(255,255,255,.78);
  font-size: 16px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 20px;
}

.app-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.app-hero__note{
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.5;
}

.app-hero__visual{
    display: flex;;
    justify-content: center;
}

/* preview */
.app-preview{
    max-width: 500px;
  /* border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35); */
}

.app-preview img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* pills */
.app-pills{
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.app-pill{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10, 150, 170, .10);
  border: 1px solid rgba(10, 150, 170, .20);
  color: rgba(16, 28, 33, .92);
  font-weight: 700;
  font-size: 13px;
}

.app-note{
  margin-top: 12px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(16, 28, 33, .70);
}

/* responsive */
@media (max-width: 980px){
  .app-hero__inner{
    grid-template-columns: 1fr;
  }
  .app-preview{
    max-width: 560px;
  }
}
