:root {
  --purple: #b515d6;
  --purple-dark: #8f10aa;
  --ink: #1a1523;
  --muted: #6b6474;
  --bg: #fdfbff;
  --card: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

.topbar { padding: 20px 0; }
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
}
.topbar img { width: 32px; height: 32px; border-radius: 8px; }

.hero { text-align: center; padding-top: 48px; padding-bottom: 32px; }
.hero .logo {
  width: 112px;
  height: 112px;
  border-radius: 25px;
  box-shadow: 0 12px 32px rgba(181, 21, 214, 0.25);
}
.hero h1 {
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 20px;
}
.hero .tagline {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  color: var(--purple);
  font-weight: 700;
  margin-top: 4px;
}
.hero .pitch {
  max-width: 600px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.store-badge { display: inline-block; margin-top: 28px; transition: transform 0.15s ease; }
.store-badge:hover { transform: scale(1.04); }
.store-badge img { height: 54px; display: block; }

.shot { padding-top: 32px; padding-bottom: 32px; }
.shot img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(26, 21, 35, 0.25);
}

.articles { padding-top: 24px; padding-bottom: 48px; }
.articles h2 { font-size: 1.4rem; font-weight: 800; margin-bottom: 12px; }
.articles a {
  display: block;
  background: var(--card);
  border: 1px solid #eee6f5;
  border-left: 5px solid var(--purple);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(26, 21, 35, 0.05);
}
.articles a:hover { border-left-color: var(--purple-dark); box-shadow: 0 6px 20px rgba(26, 21, 35, 0.09); }

.prose { max-width: 720px; margin: 0 auto; padding: 32px 24px 64px; }
.prose h1 { font-size: clamp(1.6rem, 5vw, 2.2rem); font-weight: 800; line-height: 1.25; margin-bottom: 8px; }
.prose h2 { font-size: 1.3rem; font-weight: 800; margin: 32px 0 10px; }
.prose h3 { font-size: 1.05rem; font-weight: 800; margin: 20px 0 6px; }
.prose p, .prose li { color: #3a3344; margin-bottom: 12px; }
.prose ul { padding-left: 24px; margin-bottom: 12px; }
.prose .effective { color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.prose a { color: var(--purple); }
.prose strong { color: var(--ink); }
.back-link { display: inline-block; margin-bottom: 20px; color: var(--purple); font-weight: 700; text-decoration: none; }
.back-link:hover { text-decoration: underline; }

.cta-box {
  background: var(--card);
  border: 1px solid #eee6f5;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  margin-top: 40px;
  box-shadow: 0 6px 18px rgba(26, 21, 35, 0.06);
}
.cta-box p { margin-bottom: 4px; font-weight: 700; }
.cta-box .store-badge { margin-top: 12px; }
.cta-box .store-badge img { height: 46px; }

footer {
  background: var(--ink);
  color: #b9b2c2;
  padding: 32px 0;
  text-align: center;
  font-size: 0.95rem;
}
footer a { color: #e3a6f0; text-decoration: none; font-weight: 600; margin: 0 10px; }
footer a:hover { text-decoration: underline; }
footer .links { margin-bottom: 8px; }
