:root {
  color-scheme: light dark;
  --bg: #fbfbfd;
  --text: #17171c;
  --muted: #686873;
  --line: rgba(20, 20, 30, 0.1);
  --accent: #7657ff;
  --accent2: #d64fe8;
  --surface: rgba(255, 255, 255, 0.72);
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #09090c;
    --text: #f7f7fa;
    --muted: #aaaab5;
    --line: rgba(255, 255, 255, 0.11);
    --surface: rgba(22, 22, 28, 0.72);
  }
}
* {
  box-sizing: border-box;
}
html {
  background: var(--bg);
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 20% -10%,
      rgba(118, 87, 255, 0.15),
      transparent 34rem
    ),
    radial-gradient(
      circle at 95% 10%,
      rgba(214, 79, 232, 0.1),
      transparent 30rem
    ),
    var(--bg);
  font:
    17px/1.68 -apple-system,
    BlinkMacSystemFont,
    "SF Pro Text",
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(20px);
}
.nav {
  width: min(calc(100% - 36px), 1040px);
  height: 64px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 750;
}
.mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.links {
  display: flex;
  gap: 20px;
  font-size: 15px;
}
.links a {
  color: var(--muted);
  font-weight: 600;
}
.links a[aria-current="page"] {
  color: var(--text);
}
main {
  width: min(calc(100% - 36px), 760px);
  margin: auto;
  padding: 84px 0 96px;
}
.hero {
  margin-bottom: 54px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.lede {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(19px, 2.5vw, 23px);
  line-height: 1.5;
}
.updated {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}
article {
  border-top: 1px solid var(--line);
}
section {
  padding: 34px 0 32px;
  border-bottom: 1px solid var(--line);
}
h2 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.22;
  letter-spacing: -0.025em;
}
h3 {
  margin: 24px 0 6px;
  font-size: 18px;
}
p {
  margin: 10px 0;
}
ul {
  padding-left: 1.25rem;
}
.callout {
  margin: 26px 0;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
}
.button.secondary {
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--surface);
}
footer {
  width: min(calc(100% - 36px), 1040px);
  margin: auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 16px;
}
@media (max-width: 620px) {
  .nav {
    height: 58px;
  }
  .links {
    gap: 13px;
  }
  main {
    padding-top: 58px;
  }
}

.brand-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  border-radius: 9px;
}