:root {
  --primary: #5b3a9e;
  --text: #333;
  --muted: #666;
  --bg: #f5f3f8;
  --card: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: var(--card);
  border-bottom: 1px solid #e8e4ef;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

main {
  max-width: 760px;
  margin: 32px auto;
  padding: 0 20px 48px;
}

.card {
  background: var(--card);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 2px 12px rgba(91, 58, 158, 0.08);
}

h1 {
  color: var(--primary);
  text-align: center;
  margin-top: 0;
}

h2 {
  color: #c0392b;
  font-size: 1.15rem;
  margin-top: 28px;
}

h2:first-of-type {
  margin-top: 0;
}

p,
li {
  color: var(--muted);
}

ul {
  padding-left: 1.25rem;
}

.hero {
  text-align: center;
}

.hero p {
  font-size: 1.05rem;
}

.stores {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}

.stores a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.features h3 {
  color: var(--primary);
  margin-bottom: 6px;
}

footer {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
}

footer a {
  color: var(--primary);
}
