:root {
  --bg: #fff8f2;
  --card: #ffffff;
  --primary: #9b5de5;
  --primary-dark: #7540bd;
  --secondary: #f15bb5;
  --soft-lavender: #efe6ff;
  --soft-pink: #ffe5ef;
  --soft-cream: #fff3d7;
  --text: #2b2233;
  --muted: #756a7c;
  --safe: #5cc9a7;
  --line: #ede2eb;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(160deg, var(--soft-lavender) 0%, var(--bg) 34%, var(--soft-pink) 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 22px 60px;
}

header.site {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 6px 0 22px;
}

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

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

nav.site a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  margin-left: 16px;
}

nav.site a:hover {
  text-decoration: underline;
}

.hero {
  text-align: center;
  padding: 26px 0 10px;
}

.hero img.art {
  width: min(330px, 78vw);
  height: auto;
}

.hero h1 {
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-top: 10px;
}

.hero p.tag {
  color: var(--muted);
  font-size: 18px;
  max-width: 480px;
  margin: 12px auto 0;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #e9f8f3;
  color: #338a71;
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 7px 14px;
  margin-top: 18px;
}

.cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 18px;
  padding: 15px 30px;
  margin-top: 24px;
  box-shadow: 0 8px 22px rgba(93, 61, 107, 0.25);
}

.cta:hover {
  background: var(--primary-dark);
}

.cta.soon {
  background: var(--soft-lavender);
  color: var(--primary-dark);
  box-shadow: none;
  cursor: default;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
  margin-top: 44px;
}

.feature {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px 18px;
  text-align: left;
}

.feature h3 {
  font-size: 15px;
  margin-bottom: 6px;
}

.feature p {
  color: var(--muted);
  font-size: 13.5px;
}

.emoji {
  font-size: 26px;
  display: block;
  margin-bottom: 10px;
}

main.doc {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(22px, 5vw, 42px);
}

main.doc h1 {
  font-size: clamp(26px, 5vw, 34px);
  letter-spacing: -0.6px;
  line-height: 1.2;
}

main.doc p.updated {
  color: var(--muted);
  font-size: 13px;
  margin: 8px 0 26px;
}

main.doc h2 {
  font-size: 19px;
  margin: 30px 0 8px;
  color: var(--primary-dark);
}

main.doc h3 {
  font-size: 15.5px;
  margin: 18px 0 6px;
}

main.doc p,
main.doc li {
  font-size: 15px;
  color: #453a4d;
}

main.doc ul {
  padding-left: 22px;
  margin: 8px 0;
}

main.doc li {
  margin-bottom: 6px;
}

main.doc a {
  color: var(--primary);
}

.note {
  background: var(--soft-lavender);
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 14px;
  margin: 14px 0;
}

.note.warn {
  background: var(--soft-cream);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--soft-lavender);
  border-radius: 20px;
  padding: 18px 20px;
  margin: 20px 0;
}

.contact-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.contact-card a {
  font-weight: 800;
  color: var(--primary-dark);
}

footer.site {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  padding-top: 38px;
}

footer.site a {
  color: var(--primary-dark);
  text-decoration: none;
  font-weight: 700;
  margin: 0 7px;
}

footer.site a:hover {
  text-decoration: underline;
}

@media (max-width: 520px) {
  nav.site a {
    margin-left: 10px;
    font-size: 13px;
  }
}
