:root {
  --bg: #f3f4f6;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #5f6368;
  --line: #e7e7e9;
  --cyan: #25f4ee;
  --pink: #fe2c55;
  --pink-dark: #e51d48;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(37, 244, 238, .11), transparent 27rem),
    radial-gradient(circle at 90% 72%, rgba(254, 44, 85, .10), transparent 26rem),
    var(--bg);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
}

a { color: inherit; }
h1, h2, h3, p { overflow-wrap: anywhere; }

.wrap {
  min-height: 100vh;
  display: grid;
  place-items: start center;
  padding: 18px 12px 28px;
}

.phone {
  position: relative;
  width: min(420px, 100%);
  overflow: hidden;
  border: 1px solid #e8e8e8;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(37, 244, 238, .07), transparent 27%),
    linear-gradient(315deg, rgba(254, 44, 85, .07), transparent 30%),
    var(--paper);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .13);
}

.header {
  display: flex;
  justify-content: center;
  padding: 24px 18px 12px;
}

.brand-link {
  display: block;
  width: min(280px, 76vw);
  overflow: hidden;
  border-radius: 18px;
  background: #000;
  box-shadow: -7px 7px 0 rgba(37, 244, 238, .68), 7px -6px 0 rgba(254, 44, 85, .64), 0 16px 28px rgba(0, 0, 0, .20);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero {
  padding: 16px 20px 18px;
  text-align: center;
}

.kicker, .label, .t {
  color: #3e4247;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
}

.kicker {
  display: inline-block;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(37, 244, 238, .18), rgba(254, 44, 85, .14));
}

.hero h1 {
  margin: 0;
  color: #050505;
  font-size: 30px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.035em;
}

.hero-title-link, .reward-link { color: inherit; text-decoration: none; }
.reward-link { font-weight: 700; }

.hero p {
  width: min(290px, 100%);
  margin: 13px auto 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero p .reward-link { color: #101010; }

.howto { padding: 0 18px; }
.label { margin-bottom: 10px; font-size: 14px; text-align: center; }

.panel {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 18px;
  background: #f8f8f9;
  box-shadow: inset 4px 0 0 rgba(37, 244, 238, .72), inset -4px 0 0 rgba(254, 44, 85, .72);
}

.row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 51px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--line);
}

.row:last-child { border-bottom: 0; }

.num {
  display: grid;
  place-items: center;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: #080808;
  font-size: 14px;
  font-weight: 800;
  box-shadow: -3px 2px 0 var(--cyan), 3px -2px 0 var(--pink);
}

.row h3 {
  margin: 0;
  color: #111;
  font-size: 13px;
  line-height: 1.32;
  font-weight: 700;
}

.cta { padding: 16px 18px 15px; text-align: center; }

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  width: 100%;
  border-radius: 14px;
  color: #fff;
  background: #050505;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: -5px 5px 0 var(--cyan), 5px -5px 0 var(--pink), 0 13px 24px rgba(0, 0, 0, .16);
  transition: transform 160ms ease, background 160ms ease;
}

.btn span { color: var(--cyan); font-size: 1.35em; line-height: 1; }
.btn:hover, .btn:focus-visible { background: #181818; transform: translateY(-1px); outline: none; }

.micro { margin-top: 12px; color: var(--muted); font-size: 11px; }
.divider { height: 1px; background: var(--line); }
.availability { padding: 14px 18px 17px; }
.availability .t { text-align: center; }

.pills {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.pills span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #e4e6e9;
  border-radius: 999px;
  color: #111;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
}

.pills span:last-child { grid-column: 1 / -1; justify-self: center; }

@media (min-width: 760px) {
  .wrap { place-items: center; padding: 32px 24px; }
  .phone {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    grid-template-areas: "header howto" "hero howto" "availability howto" "cta cta" "divider divider";
    column-gap: 28px;
    width: min(900px, calc(100vw - 48px));
    border-radius: 28px;
  }
  .header { grid-area: header; align-self: end; padding: 34px 8px 4px 30px; }
  .brand-link { width: 290px; }
  .hero { grid-area: hero; padding: 25px 20px 22px 30px; }
  .hero h1 { font-size: 40px; }
  .howto { grid-area: howto; align-self: center; padding: 34px 30px 10px 0; }
  .cta { grid-area: cta; padding: 22px 30px 24px; }
  .divider { grid-area: divider; }
  .availability { grid-area: availability; padding: 10px 20px 20px 30px; }
}

@media (max-width: 380px) {
  .wrap { padding-left: 8px; padding-right: 8px; }
  .hero h1 { font-size: 28px; }
  .brand-link { width: min(250px, 74vw); }
}
