:root {
  --bg: #f5f5f5;
  --paper: #ffffff;
  --ink: #111111;
  --heading: #000000;
  --muted: #575757;
  --line: #e2e2e2;
  --soft-red: rgba(0, 0, 0, 0.045);
  --red: #000000;
  --red-dark: #292929;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, 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: 22px;
  background:
    radial-gradient(circle at 16% 12%, rgba(0, 0, 0, 0.055), transparent 28%),
    radial-gradient(circle at 86% 31%, rgba(0, 0, 0, 0.035), transparent 24%),
    var(--paper);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.12);
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 34px 16px 20px;
  background: transparent;
}

.brand-link {
  display: block;
  width: min(280px, 82vw);
}

.brand-logo {
  display: block;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.hero {
  margin-top: 0;
  padding: 0 18px 12px;
  text-align: center;
}

.kicker,
.label,
.t {
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero h1 {
  margin: 0;
  color: var(--heading);
  font-size: 34px;
  line-height: 1.03;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-title-link {
  color: inherit;
  text-decoration: none;
}

.reward-link {
  color: inherit;
  font-weight: inherit;
  text-decoration: none;
}

.hero p {
  width: min(240px, 100%);
  margin: 12px auto 0;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
}

.howto {
  padding: 0 18px 0;
}

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

.panel {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: var(--soft-red);
}

.row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 9px 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

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

.num {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
}

.row h3 {
  margin: 0;
  color: #000000;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 700;
}

.row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 11.5px;
  line-height: 1.25;
}

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

.btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  width: 100%;
  border-radius: 16px;
  color: #ffffff;
  background: var(--red);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.24);
  transition: background 160ms ease, transform 160ms ease;
}

.btn span {
  font-size: 1.35em;
  line-height: 1;
}

.btn:hover,
.btn:focus-visible {
  background: var(--red-dark);
  transform: translateY(-1px);
  outline: none;
}

.micro {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-weight: 400;
  font-size: 11px;
}

.divider {
  height: 1px;
  background: var(--line);
}

.availability {
  padding: 14px 18px;
}

.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 #edf0f5;
  border-radius: 999px;
  color: #000000;
  background: #fff;
  font-family: "Poppins", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 650;
}

.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 header"
      "hero howto"
      "availability howto"
      "cta cta"
      "divider divider";
    column-gap: 24px;
    width: min(900px, calc(100vw - 48px));
    border-radius: 26px;
  }

  .header {
    grid-area: header;
    padding: 28px 28px 22px;
  }

  .brand-link {
    width: 315px;
  }

  .hero {
    grid-area: hero;
    align-self: center;
    margin-top: 0;
    padding: 40px 28px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    margin-top: 16px;
  }

  .howto {
    grid-area: howto;
    padding: 24px 28px 0 0;
  }

  .cta {
    grid-area: cta;
    padding: 18px 28px 22px;
  }

  .divider {
    grid-area: divider;
  }

  .availability {
    grid-area: availability;
    padding: 18px 28px 20px;
  }

}

@media (max-width: 380px) {
  .wrap {
    padding-left: 8px;
    padding-right: 8px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .brand-link {
    width: min(250px, 80vw);
  }
}
