/* Shared styles for SEO landing pages — kept simple and self-contained. */
:root {
  --canvas: #fafaf7;
  --surface: #ffffff;
  --ink: #0b0b12;
  --ink-soft: #3a3a46;
  --ink-mute: #6b6b77;
  --line: #e7e5df;
  --brand: #5b38f5;
  --brand-soft: #efecff;
  --success: #16a34a;
}
@media (prefers-color-scheme: dark) {
  :root {
    --canvas: #0b0b12;
    --surface: #13131d;
    --ink: #f4f3ef;
    --ink-soft: #c9c8c2;
    --ink-mute: #878691;
    --line: #262636;
    --brand-soft: rgba(91, 56, 245, 0.12);
  }
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 16px/1.6
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Segoe UI Variable Text",
    "Segoe UI",
    system-ui,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem;
}
header.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 12px 0 16px;
  margin-bottom: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
}
.brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}
h1 {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    system-ui,
    sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 1.4em 0 0.4em;
  color: var(--ink);
}
h2 {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    system-ui,
    sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 2em 0 0.5em;
}
p,
ul {
  color: var(--ink-soft);
}
ul {
  padding-left: 1.4em;
}
.lede {
  font-size: 1.1rem;
  margin: 0.8em 0 1.4em;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px -8px rgba(91, 56, 245, 0.6);
}
.cta:hover {
  background: #4a28d6;
}
.note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-mute);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 8px;
  margin-bottom: 8px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}
.related {
  border-top: 1px solid var(--line);
  margin-top: 3rem;
  padding-top: 1.4rem;
}
.related ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  list-style: none;
  padding: 0;
}
@media (max-width: 480px) {
  .related ul {
    grid-template-columns: 1fr;
  }
}
.related a {
  color: var(--brand);
  text-decoration: none;
}
.related a:hover {
  text-decoration: underline;
}
footer.f {
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
  font-size: 13px;
  color: var(--ink-mute);
}
