* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 80%);
  color: #1c2430;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

:root {
  --cta-max-width: 240px;
  --cta-height: 64px;
}

.hero {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 32px 24px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(28, 36, 48, 0.08);
}

.hero__header {
  display: flex;
  justify-content: center;
}

.hero__logo {
  width: 140px;
  height: auto;
}

.hero__content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__content h1 {
  font-size: 26px;
  margin: 0;
  line-height: 1.3;
}

.hero__description {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #415264;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.store-link,
.web-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: var(--cta-max-width);
  height: var(--cta-height);
  border-radius: 16px;
}

.store-link img {
  width: auto;
  height: calc(var(--cta-height) - 12px);
}

.web-link {
  padding: 0 28px;
  border: 1px solid rgba(28, 36, 48, 0.12);
  text-decoration: none;
  font-weight: 600;
  color: #1c2430;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.web-link:hover,
.web-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(65, 82, 100, 0.16);
}

.status-message {
  margin: 0;
  text-align: center;
  font-size: 14px;
  color: #1c2430;
}

@media (min-width: 640px) {
  body {
    padding: 40px;
  }

  .hero {
    padding: 48px;
    gap: 40px;
  }

  .hero__content h1 {
    font-size: 32px;
  }

  .hero__description {
    font-size: 18px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
  }

  .hero__actions .store-link,
  .hero__actions .web-link {
    max-width: 200px;
  }
}
