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

:root {
  --bg: #ffffff;
  --fg: #1a1a1a;
  --muted: #666666;
  --border: #eeeeee;
  --panel: #f5f5f7;
}

html,
body {
  height: 100%;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.home {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.home__hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 24px;
}

.home__brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.home__brand img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.home__name {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.home__slogan {
  font-size: 18px;
  color: var(--muted);
  font-weight: 400;
}

.home__stores {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.home__stores a {
  display: inline-flex;
}

.home__stores img {
  height: 44px;
  width: auto;
  display: block;
}

.home__footer {
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

.home__footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  color: var(--muted);
}

.home__footer a {
  text-decoration: none;
}

.home__footer a:hover {
  color: var(--fg);
}

@media (max-width: 480px) {
  .home__brand {
    flex-direction: column;
    text-align: center;
  }
  .home__footer-inner {
    gap: 20px;
  }
}
