@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,600;1,9..144,300&family=DM+Sans:wght@400;500&display=swap');

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

:root {
  --bg:        #4664de;
  --surface:   #3a56cc;
  --blue:      #4664de;
  --orange:    #da7a37;
  --text:      #ffffff;
  --muted:     rgba(255,255,255,.65);
  --border:    rgba(255,255,255,.15);
  --chip-bg:   #ffffff;
  --chip-text: #4664de;
}


html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 48px 24px;
}

.wrap {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-mark {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}

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

.wordmark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--muted);
  letter-spacing: .2px;
  margin-bottom: 36px;
}

.divider {
  width: 36px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 32px;
}

.description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  text-align: center;
  max-width: 400px;
  margin-bottom: 48px;
}

.description strong {
  color: var(--orange);
  font-weight: 500;
}

.stores {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.stores-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.store-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--chip-bg);
  color: var(--chip-text);
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  opacity: .45;
  cursor: default;
  user-select: none;
}

.chip svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.chip-sub {
  font-size: 10px;
  font-weight: 400;
  opacity: .7;
  display: block;
  line-height: 1;
  margin-bottom: 1px;
}

.chip-main {
  display: block;
  line-height: 1;
}

.footer {
  margin-top: 56px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 400px) {
  .wordmark { font-size: 36px; }
  .store-chips { flex-direction: column; align-items: stretch; }
  .chip { justify-content: center; }
}
