:root {
  --background: #ffffff;
  --background-secondary: #f3f4f4;
  --text: #000000;
  --text-secondary: #5a5a5a;
  --text-tertiary: #a5a5a5;
  --border: rgba(0, 0, 0, 0.2);
  --interaction: #27be3f;
  --interaction-label: #ffffff;
  --font: "DM Sans", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
}

html {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  background: var(--background);
}

body {
  min-height: 100vh;
}

a {
  color: var(--interaction);
  font-weight: 700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 100vh;
  padding: 32px 16px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 100%;
  max-width: 256px;
}

.icon {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 22%;
}

.support {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 20rem;
  text-align: center;
}

.support .icon {
  width: 96px;
}

.support p {
  color: var(--text-secondary);
}

.stores {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 8px 16px;
  color: var(--interaction-label);
  background: var(--text);
  border-radius: 8px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.store-button:hover {
  text-decoration: none;
  opacity: 0.75;
}

.store-button[aria-disabled="true"] {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}

.store-button[aria-disabled="true"]:hover {
  opacity: 0.5;
}

.store-button svg {
  flex-shrink: 0;
}

.store-button small {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  color: var(--text-tertiary);
}

.store-button strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.footer {
  display: flex;
  gap: 24px;
}

.legal {
  max-width: 40rem;
  margin: 0 auto;
  padding: 32px 16px 64px;
}

.legal h1 {
  margin: 24px 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.333;
}

.legal h2 {
  margin: 32px 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.333;
}

.legal h3 {
  margin: 24px 0 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.333;
}

.legal p {
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.legal ul {
  margin: 0 0 16px;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}

.legal li {
  margin-bottom: 8px;
}

.legal li:last-child {
  margin-bottom: 0;
}

.legal strong {
  color: var(--text);
  font-weight: 700;
}

.legal .footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
