:root { --ink: #14161b; --muted: #6b7280; --accent: #6600ff; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(90% 70% at 50% 118%, rgba(102, 0, 255, 0.10), transparent 60%),
    #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

/* Long-form pages (privacy) read better pinned to the top than vertically centered. */
body.page-doc { align-items: flex-start; }

main {
  width: 100%;
  max-width: 460px;
  text-align: center;
  animation: rise 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  main { animation: none; }
}

.icon {
  width: 104px;
  height: 104px;
  filter: drop-shadow(0 14px 30px rgba(102, 0, 255, 0.28));
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.icon:hover { transform: rotate(360deg); }
@media (prefers-reduced-motion: reduce) {
  .icon { transition: none; }
  .icon:hover { transform: none; }
}

h1 {
  margin-top: 24px;
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.quote {
  margin-top: 18px;
  font-size: 16px;
  color: var(--muted);
  font-style: italic;
}
.quote cite { display: block; margin-top: 6px; font-style: normal; }

.features {
  margin: 36px auto 0;
  list-style: none;
  text-align: left;
  display: inline-block;
}
.features li {
  position: relative;
  padding-left: 20px;
  margin-top: 14px;
  font-size: 16px;
}
.features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.features li strong { font-weight: 600; color: var(--accent); }

.footer { margin-top: 44px; }
.badge {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 6px 16px rgba(20, 22, 27, 0.18));
  transition: transform 0.2s ease;
}
.badge:hover { transform: translateY(-2px); }

.made { margin-top: 18px; font-size: 14px; color: var(--muted); }

a.link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
a.link:hover { border-bottom-color: var(--accent); }

.legal { margin-top: 10px; font-size: 13px; color: var(--muted); }

/* Privacy policy document */
.doc {
  max-width: 640px;
  text-align: left;
}
.doc .crest { text-align: center; }
.doc .crest .icon { width: 64px; height: 64px; }
.doc h1 {
  margin-top: 20px;
  font-size: 34px;
  text-align: center;
}
.doc .updated {
  margin-top: 8px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
}
.doc h2 {
  margin-top: 32px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.doc p { margin-top: 12px; font-size: 15px; color: #374151; }
.doc ul { margin: 12px 0 0 20px; }
.doc li { margin-top: 8px; font-size: 15px; color: #374151; }
.doc strong { color: var(--ink); }
.doc .back { margin-top: 40px; text-align: center; }
