:root {
  --bg: #ffffff;
  --surface: #f7fafc;
  --text: #0f172a;
  --muted: #475569;
  --accent: #007bff;
  --accent-dim: #0056b3;
  --radius: 14px;
  --font: ui-sans-serif, system-ui, 'Segoe UI', Roboto, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  background: radial-gradient(ellipse 130% 80% at 50% -30%, rgba(0, 123, 255, 0.12) 0%, var(--bg) 55%);
  color: var(--text);
  line-height: 1.5;
}

.shell {
  max-width: 30rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
}

.brand {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.5rem;
}

.brand__logo {
  width: 220px;
  height: auto;
  display: block;
  margin-top: -0.35rem;
}

.brand__meta {
  padding-top: 0.25rem;
}

.brand__publisher {
  margin: 0.15rem 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}

.lede {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.actions {
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-dim));
  color: #fff;
  box-shadow: 0 8px 26px rgba(0, 123, 255, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 10px 34px rgba(0, 123, 255, 0.28);
}

.btn--store {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(2, 6, 23, 0.08);
  width: auto;
  min-width: 11rem;
  gap: 0.55rem;
}

.btn--store:hover {
  border-color: rgba(0, 123, 255, 0.35);
}

.stores {
  padding-top: 0.5rem;
}

.stores[hidden] {
  display: none !important;
}

.stores__hint {
  margin: 0 0 0.75rem;
  font-size: 0.8125rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stores__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-logo {
  width: 1.1rem;
  height: 1.1rem;
  display: inline-block;
  object-fit: contain;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
