:root {
  --pink: #ff2f68;
  --rose: #fff1f6;
  --gold: #ffb248;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e9edf3;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(247, 247, 250, .96)),
    radial-gradient(circle at 12% 8%, rgba(255, 47, 104, .18), transparent 30%),
    radial-gradient(circle at 88% 16%, rgba(255, 178, 72, .2), transparent 28%),
    #f7f7fa;
  color: var(--ink);
  font-family: Inter, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
}

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

.landing {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 22px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(255, 47, 104, .2);
}

.ghost,
.secondary {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 11px 18px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .05);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 96px);
}

.identity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.app-icon {
  width: 104px;
  height: 104px;
  border-radius: 27px;
  object-fit: cover;
  box-shadow: 0 20px 48px rgba(255, 47, 104, .28);
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(255, 47, 104, .11);
  color: var(--pink);
  padding: 8px 13px;
  font-weight: 900;
}

h1 {
  margin: 22px 0 14px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: .92;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.primary {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), #ff1f83);
  color: #fff;
  padding: 14px 24px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(255, 47, 104, .26);
}

.primary:hover,
.secondary:hover,
.ghost:hover {
  transform: translateY(-1px);
}

.primary,
.secondary,
.ghost {
  transition: transform .18s ease, box-shadow .18s ease;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.meta span {
  border-radius: 999px;
  background: #fff;
  color: #4b5563;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 800;
}

.rating {
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: baseline;
  gap: 8px 10px;
  width: fit-content;
  margin-top: 28px;
  border: 1px solid rgba(255, 47, 104, .12);
  border-radius: 18px;
  background: rgba(255, 255, 255, .74);
  padding: 13px 16px;
  box-shadow: 0 16px 38px rgba(17, 24, 39, .07);
}

.rating strong {
  font-size: 22px;
}

.rating span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.phone-preview {
  justify-self: center;
  width: 390px;
  filter: drop-shadow(0 28px 52px rgba(17, 24, 39, .18));
}

.phone-art {
  display: block;
  width: 100%;
  height: auto;
}

.screen {
  overflow: hidden;
  min-height: 640px;
  border-radius: 28px;
  background: #fff;
  padding: 18px;
}

.screen header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.screen header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.screen header b,
.screen header span {
  display: block;
}

.screen header span {
  margin-top: 3px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
}

.banner {
  width: 100%;
  height: 112px;
  margin-top: 18px;
  border-radius: 14px;
  object-fit: cover;
}

.live-card {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
  border-radius: 16px;
  background: #f7f8fa;
  padding: 12px;
}

.live-card img {
  width: 82px;
  height: 98px;
  border-radius: 12px;
  object-fit: cover;
}

.live-card strong,
.live-card span {
  display: block;
}

.live-card span {
  margin-top: 8px;
  color: var(--muted);
}

.live-card em {
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  padding: 5px 8px;
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.grid img {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  object-fit: cover;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.features article,
.install {
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .06);
}

.features b,
.features span {
  display: block;
}

.features span {
  margin-top: 9px;
  color: var(--muted);
  line-height: 1.45;
}

.features article {
  transition: transform .2s ease, box-shadow .2s ease;
}

.features article:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(17, 24, 39, .08);
}

.install {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
}

.install h2 {
  margin: 0 0 8px;
}

.install p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.qr {
  position: relative;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 255, 255, .95), transparent 26%),
    linear-gradient(135deg, var(--pink), var(--gold));
}

.qr img {
  width: 54px;
  height: 54px;
  border: 3px solid rgba(255, 255, 255, .86);
  border-radius: 15px;
  object-fit: cover;
}

.qr span {
  position: absolute;
  right: 7px;
  bottom: 7px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 900;
}

@media (max-width: 820px) {
  .landing {
    padding: 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0;
  }

  .identity {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-icon {
    width: 92px;
    height: 92px;
    border-radius: 23px;
  }

  .rating {
    grid-template-columns: auto auto;
  }

  .phone-preview {
    width: min(330px, 100%);
  }

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

  .install {
    align-items: flex-start;
    flex-direction: column;
  }
}
