:root {
  --blue-700: #1a4fa0;
  --blue-600: #2563c9;
  --blue-500: #3b7be0;
  --blue-50: #eef4fd;
  --gold-500: #c69214;
  --gold-400: #e0a92b;
  --gold-50: #fbf4e2;
  --ink: #14181f;
  --ink-soft: #3b4351;
  --muted: #667085;
  --line: #e4e7ec;
  --line-soft:#eef0f3;
  --surface: #ffffff;
  --canvas: #f7f8fa;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
          Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
          "Liberation Mono", monospace;
  --measure: 1120px;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(20, 24, 31, .04), 0 8px 24px rgba(20, 24, 31, .05);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  font-weight: 680;
  letter-spacing: -0.01em;
}

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  margin: 0 0 1rem;
}

strong {
  color: var(--ink);
  font-weight: 650;
}

code, pre {
  font-family: var(--mono);
  font-size: 0.9em;
}

code {
  background: var(--line-soft);
  padding: 0.12em 0.38em;
  border-radius: 5px;
  color: var(--blue-700);
}

pre {
  background: var(--ink);
  color: #e7ebf1;
  padding: 1rem 1.15rem;
  border-radius: 10px;
  overflow-x: auto;
  line-height: 1.55;
}

pre code {
  background: none;
  color: inherit;
  padding: 0;
}

.wrap {
  width: 100%;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 62px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.12rem;
}

.site-header__brand:hover {
  text-decoration: none;
}

.site-header__logo {
  flex: none;
  width: 24px;
  height: 24px;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.95rem;
}

.site-header__nav a {
  color: var(--ink-soft);
}

.site-header__nav a:hover {
  color: var(--blue-600);
  text-decoration: none;
}

.site-header__nav a[aria-current=page] {
  color: var(--blue-700);
  font-weight: 620;
}

.site-header__repo {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.34rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink) !important;
  font-weight: 550;
}

.site-header__repo:hover {
  border-color: var(--blue-500);
  background: var(--blue-50);
  text-decoration: none;
}

.site-header__repo-mark {
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.35rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 1px 2px rgba(26, 79, 160, 0.25), 0 8px 18px rgba(37, 99, 201, 0.28);
}

.btn--primary:hover {
  background: var(--blue-700);
}

.btn--ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--surface);
}

.btn--ghost:hover {
  border-color: var(--blue-500);
  color: var(--blue-700);
}

.section-head {
  max-width: 640px;
  margin: 0 0 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  margin: 0 0 0.6rem;
}

.section-head p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 0;
}

.hero {
  background: radial-gradient(1100px 480px at 78% -12%, var(--blue-50), transparent 60%), radial-gradient(760px 360px at 8% 8%, var(--gold-50), transparent 55%), var(--surface);
  border-bottom: 1px solid var(--line-soft);
}

.hero__inner {
  padding: 5.5rem 1.5rem 4.75rem;
  max-width: 900px;
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 1.1rem;
  padding: 0.3rem 0.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--blue-50);
  border: 1px solid #d7e4fa;
  border-radius: 999px;
}

.hero__headline {
  font-size: clamp(2.35rem, 6vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.3rem;
  color: var(--ink);
  font-weight: 720;
}

.hero__lede {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 660px;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid var(--line);
}

.hero__tags li {
  padding: 0.3rem 0.75rem;
  font-size: 0.86rem;
  font-weight: 550;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.constraints {
  padding: 5rem 0;
}

.cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem 1.75rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.card:hover {
  transform: translateY(-2px);
  border-color: #d7e4fa;
  box-shadow: 0 2px 4px rgba(20, 24, 31, 0.05), 0 14px 32px rgba(20, 24, 31, 0.08);
}

.card__index {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-500);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
}

.card__title {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.card__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.features {
  padding: 5rem 0;
}

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.6rem 1.5rem;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.feature:hover {
  transform: translateY(-2px);
  border-color: #d7e4fa;
  box-shadow: var(--shadow);
}

.feature__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  border-radius: 11px;
  color: var(--blue-600);
  background: var(--blue-50);
  border: 1px solid #dce7fb;
}

.feature__glyph svg {
  width: 22px;
  height: 22px;
}

.feature__title {
  font-size: 1.12rem;
  margin: 0 0 0.45rem;
}

.feature__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.compare {
  padding: 5rem 0;
  background: var(--canvas);
}

.compare__scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.compare__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare__table th,
.compare__table td {
  text-align: left;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.compare__table thead th {
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  background: var(--canvas);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
}

.compare__table tbody th {
  color: var(--ink);
  font-weight: 620;
  width: 15rem;
}

.compare__table td {
  color: var(--ink-soft);
}

.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__own {
  color: var(--blue-700) !important;
}

.compare__table td.compare__own {
  font-weight: 550;
  background: var(--blue-50);
}

.compare__table thead th.compare__own {
  background: var(--blue-50);
  color: var(--blue-700);
}

.compare__axis-head {
  color: var(--muted);
  font-weight: 600;
}

.compare__note {
  margin: 1.25rem 0 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 0.95rem;
}

.demo {
  padding: 5rem 0;
  background: var(--canvas);
}

.demo__actions {
  margin: 0 0 1.5rem;
}

.demo__note {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.demo__table {
  min-width: 0;
}

.demo__table tbody th {
  width: auto;
  font-weight: 600;
}

.demo__table code {
  background: var(--blue-50);
  color: var(--blue-700);
  padding: 0.12em 0.4em;
  border-radius: 5px;
  font-size: 0.92em;
}

.shots {
  padding: 5rem 0;
}

.shots__input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.shots__bar {
  display: flex;
  justify-content: flex-start;
  margin: -1.25rem 0 2rem;
}

.shots__switch {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  cursor: pointer;
  user-select: none;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

.shots__switch:hover {
  border-color: #d7e4fa;
  box-shadow: var(--shadow);
}

.shots__side {
  transition: color 0.18s ease;
}

.shots__side--a {
  color: var(--ink);
}

.shots__track {
  position: relative;
  flex: none;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: var(--blue-50);
  border: 1px solid #dce7fb;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.shots__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-600);
  transition: transform 0.18s ease, background 0.18s ease;
}

.shots__input:checked ~ .shots__bar .shots__side--a {
  color: var(--muted);
}

.shots__input:checked ~ .shots__bar .shots__side--b {
  color: var(--ink);
}

.shots__input:checked ~ .shots__bar .shots__track {
  background: #1f2937;
  border-color: #1f2937;
}

.shots__input:checked ~ .shots__bar .shots__thumb {
  transform: translateX(20px);
  background: var(--gold-400);
}

.shots__input:focus-visible ~ .shots__bar .shots__switch {
  outline: 3px solid var(--blue-500);
  outline-offset: 2px;
}

.shots__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 3.25rem;
}

.shot__head {
  max-width: 720px;
  margin: 0 0 1rem;
}

.shot__title {
  font-size: 1.18rem;
  margin: 0 0 0.4rem;
}

.shot__body {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.shot__frame {
  position: relative;
  aspect-ratio: 1440/1000;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--shadow);
}

.shot__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.3s ease;
}

.shot__img--b {
  opacity: 0;
}

.shots__input:checked ~ .shots__list .shot__img--a {
  opacity: 0;
}

.shots__input:checked ~ .shots__list .shot__img--b {
  opacity: 1;
}

.shots__note {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  .shot__img, .shots__thumb, .shots__track, .shots__side {
    transition: none;
  }
}
.tech {
  padding: 5rem 0;
  background: var(--canvas);
}

.tech__list li code, .tech code {
  background: var(--surface);
}

.tech__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 200px;
  gap: 2.5rem;
  align-items: start;
}

.tech__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
}

.tech__list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.5;
}

.tech__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--gold-400);
}

.tech__list code {
  background: var(--line-soft);
  color: var(--blue-700);
}

.tech__links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tech__link {
  font-weight: 600;
  font-size: 0.98rem;
}

.story {
  padding: 5rem 0;
}

.story__inner h2:first-child {
  margin-top: 0;
}

.story__inner {
  max-width: 720px;
  margin: 0 auto;
}

.story__inner h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  margin: 0 0 1.25rem;
}

.story__inner p {
  font-size: 1.08rem;
  margin: 0 0 1.25rem;
}

.story__inner p:first-of-type {
  font-size: 1.18rem;
  color: var(--ink);
}

.story__inner strong {
  color: var(--ink);
}

.docs-index {
  padding: 5rem 0 5.5rem;
  background: var(--canvas);
}

.doclist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.doclist__link {
  display: block;
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.75rem;
  color: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease;
}

.doclist__link:hover {
  text-decoration: none;
  transform: translateY(-2px);
  border-color: #d7e4fa;
  box-shadow: var(--shadow);
}

.doclist__link h3 {
  font-size: 1.18rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.doclist__link p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0 0 0.9rem;
}

.doclist__cta {
  color: var(--blue-600);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-band {
  background: radial-gradient(900px 300px at 85% -40%, rgba(224, 169, 43, 0.16), transparent 60%), linear-gradient(135deg, var(--blue-700), #123a78);
  color: #eaf1fc;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 3.5rem 1.5rem;
}

.cta-band__title {
  color: #fff;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  margin: 0 0 0.4rem;
}

.cta-band__text {
  margin: 0;
  color: #c6d6f2;
  font-size: 1.05rem;
}

.cta-band .btn--primary {
  background: #fff;
  color: var(--blue-700);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.cta-band .btn--primary:hover {
  background: var(--gold-50);
  color: var(--blue-700);
}

.site-footer {
  background: var(--ink);
  color: #b6becb;
  padding: 3.25rem 0;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.site-footer__name {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.site-footer__tagline {
  margin: 0.55rem 0 0;
  max-width: 30ch;
  font-size: 0.96rem;
  color: #97a0af;
}

.site-footer__heading {
  display: block;
  color: #dfe4ec;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.site-footer a {
  color: #b6becb;
  font-size: 0.96rem;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer__note {
  margin: 0.3rem 0 0;
  font-size: 0.9rem;
  color: #7f8896;
  font-family: var(--mono);
}

.doc {
  padding: 3rem 0 4.5rem;
}

.doc__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 232px;
  gap: 3.5rem;
  align-items: start;
}

.doc__body {
  min-width: 0;
  max-width: 720px;
  font-size: 1.04rem;
}

.doc__body h1 {
  font-size: clamp(2rem, 4.5vw, 2.6rem);
  letter-spacing: -0.025em;
  margin: 0 0 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.doc__body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 0.85rem;
}

.doc__body h3 {
  font-size: 1.18rem;
  margin: 1.8rem 0 0.6rem;
}

.doc__body ul, .doc__body ol {
  padding-left: 1.35rem;
}

.doc__body li {
  margin: 0.35rem 0;
}

.doc__body li::marker {
  color: var(--blue-500);
}

.doc__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.97rem;
}

.doc__body th, .doc__body td {
  text-align: left;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.doc__body th {
  background: var(--canvas);
  color: var(--ink);
  font-weight: 620;
}

.doc__body td a {
  font-weight: 500;
}

.doc__body blockquote {
  margin: 1.5rem 0;
  padding: 0.3rem 0 0.3rem 1.15rem;
  border-left: 3px solid var(--gold-400);
  color: var(--muted);
}

.doc__aside {
  position: sticky;
  top: 86px;
  font-size: 0.95rem;
}

.doc__aside-heading {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.doc__aside-nav {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 1.25rem;
}

.doc__aside-nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  color: var(--ink-soft);
  border-left: 2px solid transparent;
}

.doc__aside-nav a:hover {
  background: var(--canvas);
  text-decoration: none;
  color: var(--blue-700);
}

.doc__aside-nav a[aria-current=page] {
  color: var(--blue-700);
  font-weight: 620;
  background: var(--blue-50);
  border-left-color: var(--blue-500);
}

.doc__aside-home {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 960px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tech__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .tech__links {
    flex-direction: row;
    gap: 1.5rem;
  }
}
@media (max-width: 860px) {
  .cards, .doclist {
    grid-template-columns: 1fr;
  }
  .doc__wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .doc__aside {
    position: static;
    order: -1;
    border-bottom: 1px solid var(--line);
    padding-bottom: 1.25rem;
  }
  .doc__aside-nav {
    flex-flow: row wrap;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 620px) {
  .site-header__nav a:not(.site-header__repo) {
    display: none;
  }
  .hero__inner {
    padding: 3.5rem 1.5rem 3rem;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .tech__list {
    grid-template-columns: 1fr;
  }
  .cta-band__inner {
    padding: 2.75rem 1.5rem;
  }
}

/*# sourceMappingURL=style.css.map */