:root {
  --ink: #0f172a;
  --muted: #5d6a75;
  --bg: #ffffff;
  --gradient: linear-gradient(120deg, #fe833d 0%, #fd665b 50%, #fb4e6a 100%);
  --badge-w: 148px;
  --badge-h: 44px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html,
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

body {
  font-family: Nunito, "Segoe UI", system-ui, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.wrap {
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 22px 40px;
}

h1 {
  margin: 0 0 6px;
  max-width: 16ch;
  font-size: clamp(1.9rem, 5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.phones {
  display: block;
  width: min(640px, 100%);
  height: auto;
  margin: 0 auto 20px;
}

.stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 36px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--badge-w);
  height: var(--badge-h);
  flex: 0 0 var(--badge-w);
  line-height: 0;
  border-radius: 8px;
  opacity: 0.94;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.badge:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.badge:focus-visible,
.more:focus-visible {
  outline: 2px solid #fd665b;
  outline-offset: 3px;
}

.more-label {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 600;
}

.more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background-image: var(--gradient);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(251, 78, 106, 0.22);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.more:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .page {
    height: 100svh;
    overflow: hidden;
  }

  .wrap {
    height: 100%;
    max-height: 100svh;
    justify-content: center;
    padding: 20px 22px;
  }

  .phones {
    flex: 1 1 auto;
    width: auto;
    max-width: min(820px, 86vw);
    max-height: 46svh;
    min-height: 0;
    object-fit: contain;
    margin-bottom: 18px;
  }
}

@media (max-width: 640px) {
  .more {
    width: min(100%, 18rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .badge,
  .more {
    transition: none;
  }

  .badge:hover,
  .more:hover {
    transform: none;
  }
}
