*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #111118;
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
header {
  padding: 16px 24px;
  border-bottom: 1px solid #e4e4ec;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111118;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}
.brand-mark {
  width: 28px;
  height: 28px;
  background: #5a3fa0;
  border-radius: 7px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
}
.wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5a3fa0;
  margin: 0 0 8px;
}
h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
h2 {
  font-size: 22px;
  line-height: 1.3;
  margin: 40px 0 12px;
  letter-spacing: -0.01em;
  font-weight: 700;
}
.lede {
  font-size: 18px;
  color: #444;
  margin: 0 0 12px;
}
.answer-block {
  background: #f5f3ff;
  border-left: 3px solid #5a3fa0;
  padding: 18px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0 12px;
  font-size: 16px;
  color: #1f1640;
}
p { margin: 0 0 16px; }
ul, ol { padding-left: 22px; margin: 0 0 16px; }
li { margin-bottom: 6px; }
a { color: #5a3fa0; }
a:hover { color: #7c6af7; }
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 15px;
}
th, td {
  padding: 12px 14px;
  border: 1px solid #e4e4ec;
  text-align: left;
  vertical-align: top;
}
th {
  background: #f5f5f7;
  font-weight: 700;
}
.cta {
  display: inline-block;
  background: #5a3fa0;
  color: #fff !important;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 12px;
}
.cta:hover { background: #6a4dc0; }
footer {
  border-top: 1px solid #e4e4ec;
  padding: 24px;
  color: #666;
  font-size: 14px;
  text-align: center;
}
@media (max-width: 600px) {
  h1 { font-size: 28px; }
  h2 { font-size: 19px; }
  .wrap { padding: 28px 18px 60px; }
}
