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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #EDF2F2;
  color: #1A2B2B;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
  max-width: 480px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-icon {
  width: 48px;
  height: 48px;
  background: #00BBBC;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.tagline {
  color: #587070;
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.badge {
  display: inline-block;
  padding: 6px 16px;
  background: #CCFAFA;
  border: 1px solid #66D5D6;
  border-radius: 20px;
  color: #005F60;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

.store-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #DDE8E8;
  border-radius: 10px;
  color: #587070;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}

.store-btn span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
  font-size: 0.95rem;
  font-weight: 600;
}

.store-btn small {
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact {
  margin-top: 48px;
  color: #587070;
  font-size: 0.85rem;
}

.contact a {
  color: #00BBBC;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}
