:root {
  --background: #8a2600;
  --card: #ffffff;
  --text: #17233f;
  --muted: #536181;
  --accent: #8a2600;
  --shadow: 0 24px 80px rgba(39, 12, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
}

body {
  height: 100%;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow: hidden;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  width: 100%;
  height: 100svh;
  padding: 8px;
  overflow: hidden;
}

.landing-frame {
  --landing-scale: 1;
  width: calc(100% - 32px);
  max-width: 400px;
  padding-top: 72px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(var(--landing-scale));
  transform-origin: center;
  transition: transform 120ms ease;
  will-change: transform;
}

.landing-card {
  position: relative;
  width: 100%;
  padding: 124px 26px 32px;
  text-align: center;
  background: var(--card);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.logo-shell {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(160px, 48vw);
  height: min(136px, 40vw);
  display: grid;
  place-items: center;
  background: var(--card);
  border-radius: 24px;
  transform: translate(-50%, -47%);
}

.logo-shell img {
  width: 108px;
  height: 108px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 12px 14px rgba(39, 12, 0, 0.16));
}

h1,
p {
  text-wrap: pretty;
}

h1 {
  margin: 0;
  color: var(--text);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.instagram-link {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  margin-top: 18px;
  border-radius: 8px;
  text-decoration: none;
}

.instagram-link img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.instagram-link[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.instagram-link:focus-visible,
.store-badge:focus-visible {
  outline: 3px solid rgba(138, 38, 0, 0.32);
  outline-offset: 4px;
}

.description {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.store-actions {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 22px;
}

.store-actions:empty,
.store-actions.is-empty {
  display: none;
}

.store-badge {
  width: 168px;
  display: block;
  border-radius: 6px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.store-badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(23, 35, 63, 0.16);
}

.store-badge.is-disabled {
  cursor: default;
  pointer-events: none;
}

.store-badge.is-disabled:hover {
  box-shadow: none;
  transform: none;
}

.store-badge img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 360px) {
  .landing-card {
    padding-right: 22px;
    padding-left: 22px;
  }

  .description {
    font-size: 14px;
  }
}
