:root {
  --background: #fff8f2;
  --surface: #ffffff;
  --text: #2d2926;
  --text-muted: #8c8279;
  --primary: #e8725c;
  --primary-strong: #d4604e;
  --primary-soft: #f2998a;
  --border: #e8e2dc;
  --shadow: 0 10px 28px rgba(45, 41, 38, 0.08);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    ui-rounded,
    'Nunito',
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.page-shell {
  min-height: calc(100vh - 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px;
}

.hero {
  width: 100%;
  max-width: 520px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

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

.brand-mark {
  display: block;
}

.brand-name {
  font-size: 22px;
  line-height: 30px;
  font-weight: 800;
}

.artwork {
  position: relative;
  width: 260px;
  min-height: 210px;
  display: grid;
  place-items: center;
}

.sticker {
  display: block;
  width: auto;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(45, 41, 38, 0.12));
}

.sticker-primary {
  width: 188px;
  height: 188px;
}

.sticker-phone {
  position: absolute;
  right: 8px;
  bottom: 0;
  width: 92px;
  height: 92px;
}

.hero-copy {
  display: grid;
  gap: 10px;
}

h1 {
  max-width: 440px;
  margin: 0;
  font-size: 34px;
  line-height: 40px;
  font-weight: 800;
}

p {
  max-width: 420px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  line-height: 20px;
  font-weight: 800;
}

.service-row li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-row li:not(:last-child)::after {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary-soft);
}

.actions {
  width: 100%;
  max-width: 460px;
  display: grid;
  gap: 16px;
}

.primary-button,
.store-button {
  min-height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-decoration: none;
  font-size: 15px;
  line-height: 20px;
  font-weight: 800;
}

.primary-button {
  background: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.primary-button:hover {
  background: var(--primary-strong);
}

.store-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.store-button {
  min-height: 48px;
  border: 1px solid var(--border);
  background: var(--surface);
}

.store-button-disabled {
  color: var(--text-muted);
  opacity: 0.62;
}

.footer {
  min-height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 0 24px 18px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 18px;
  font-weight: 700;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary);
}

@media (max-width: 520px) {
  .page-shell {
    min-height: calc(100vh - 58px);
    padding: 20px;
    gap: 24px;
  }

  .hero {
    gap: 20px;
  }

  .artwork {
    width: 236px;
    min-height: 190px;
  }

  .sticker-primary {
    width: 168px;
    height: 168px;
  }

  .sticker-phone {
    width: 84px;
    height: 84px;
  }

  h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .store-row {
    grid-template-columns: 1fr;
  }
}
