:root {
  --pq-bg: #fffdf8;
  --pq-ink: #18151d;
  --pq-accent: #7657ff;
  --pq-line: rgba(24, 21, 29, 0.1);
  --pq-muted: rgba(24, 21, 29, 0.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--pq-bg);
  color: var(--pq-ink);
  font: 400 16px/1.65 Geist, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--pq-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
.pq-top {
  border-bottom: 1px solid var(--pq-line);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pq-logo {
  font: 800 18px/1 "Bricolage Grotesque", system-ui;
  letter-spacing: -0.05em;
  color: var(--pq-ink);
  text-decoration: none;
}
.pq-logo:hover { text-decoration: none; }
.pq-nav { display: flex; gap: 16px; font: 500 13px Geist, system-ui; flex-wrap: wrap; }
.pq-nav a { color: var(--pq-muted); }
main { max-width: 680px; margin: 0 auto; padding: 48px 24px 80px; }
h1 {
  margin: 0 0 8px;
  font: 800 clamp(28px, 4vw, 40px)/1.1 "Bricolage Grotesque", system-ui;
  letter-spacing: -0.03em;
}
.pq-updated { margin: 0 0 32px; font: 400 13px Geist, system-ui; color: var(--pq-muted); }
h2 { margin: 28px 0 10px; font: 700 18px Geist, system-ui; }
p, li { color: var(--pq-muted); }
ul { padding-left: 1.2em; }
footer {
  border-top: 1px solid var(--pq-line);
  padding: 24px;
  text-align: center;
  font: 400 12px Geist, system-ui;
  color: var(--pq-muted);
}
.pq-center { text-align: center; padding: 80px 24px; max-width: 480px; margin: 0 auto; }
.pq-eyes { display: flex; gap: 8px; justify-content: center; margin-bottom: 20px; }
.pq-eye {
  width: 8px; height: 12px; border-radius: 999px; background: var(--pq-accent);
}
.pq-btn {
  display: inline-block;
  margin-top: 20px;
  background: var(--pq-accent);
  color: #fffdf8;
  border-radius: 12px;
  padding: 14px 22px;
  font: 600 14px Geist, system-ui;
  text-decoration: none;
}
.pq-btn:hover { text-decoration: none; opacity: 0.92; }
@media (max-width: 640px) {
  main { padding: 36px 20px 64px; }
  .pq-top { padding: 12px 16px; }
}
