:root {
  --bg: #f4f1e8;
  --bg-strong: #e8ddc6;
  --paper: #fffdf8;
  --ink: #1f1c16;
  --muted: #645b4b;
  --line: #d5c6aa;
  --accent: #0f6c5c;
  --accent-strong: #0a4e43;
  --accent-soft: #d8efe8;
  --code-bg: #1d2a2f;
  --code-ink: #ebf2ef;
  --shadow: 0 22px 50px rgba(61, 44, 19, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(15, 108, 92, 0.12), transparent 30%), linear-gradient(180deg, #f6f0e3 0%, var(--bg) 100%);
  color: var(--ink);
  font: 16px/1.65 "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

a {
  color: var(--accent-strong);
}

a:hover {
  color: var(--accent);
}

code,
pre {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

code {
  padding: 0.15rem 0.4rem;
  border-radius: 0.45rem;
  background: rgba(15, 108, 92, 0.08);
  font-size: 0.94em;
}

pre {
  overflow-x: auto;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: var(--code-bg);
  color: var(--code-ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

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

.highlight {
  margin: 1rem 0 1.4rem;
  border-radius: var(--radius-md);
  background: var(--code-bg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero__panel .highlight {
  background: transparent;
  box-shadow: none;
}

.highlight pre {
  margin: 0;
}

.highlight .c,
.highlight .cm,
.highlight .c1,
.highlight .cs {
  color: #7f948f;
  font-style: italic;
}

.highlight .err,
.highlight .gd {
  color: #ffb4b4;
}

.highlight .k,
.highlight .kd,
.highlight .kn,
.highlight .kp,
.highlight .kr,
.highlight .kt,
.highlight .nt,
.highlight .ow {
  color: #8ad8c6;
}

.highlight .o,
.highlight .p {
  color: #d6e7df;
}

.highlight .na,
.highlight .nb,
.highlight .nc,
.highlight .ne,
.highlight .nf,
.highlight .nn,
.highlight .nx,
.highlight .py {
  color: #9ed0ff;
}

.highlight .nl,
.highlight .nv,
.highlight .vc,
.highlight .vg,
.highlight .vi {
  color: #f7d08a;
}

.highlight .s,
.highlight .sa,
.highlight .sb,
.highlight .sc,
.highlight .dl,
.highlight .sd,
.highlight .s1,
.highlight .s2,
.highlight .se,
.highlight .sh,
.highlight .si,
.highlight .sr,
.highlight .ss,
.highlight .sx {
  color: #f1c27d;
}

.highlight .m,
.highlight .mb,
.highlight .mf,
.highlight .mh,
.highlight .mi,
.highlight .mo,
.highlight .il {
  color: #f4a261;
}

.highlight .bp,
.highlight .fm,
.highlight .gi {
  color: #b9fbc0;
}

.highlight .gh,
.highlight .gu {
  color: #dbe9e4;
  font-weight: 700;
}

.highlight .w {
  color: rgba(235, 242, 239, 0.25);
}

.doc-tabs {
  margin: 1.2rem 0 1.8rem;
}

.doc-tabs input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.doc-tabs__nav {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.96);
}

.doc-tabs__nav label {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.doc-tabs__nav label:hover {
  color: var(--accent-strong);
  background: rgba(15, 108, 92, 0.08);
}

.doc-tabs__panel {
  display: none;
}

.doc-tabs__panel .highlight {
  margin-top: 0.9rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.03em;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.5rem);
}

h2 {
  margin-top: 2.4rem;
  font-size: 1.7rem;
}

h3 {
  margin-top: 1.8rem;
  font-size: 1.2rem;
}

p,
li {
  color: var(--muted);
}

ul,
ol {
  padding-left: 1.25rem;
}

.shell {
  width: min(1120px, 100vw - 2rem);
  margin: 0 auto;
}

.shell--split {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(244, 241, 232, 0.82);
  border-bottom: 1px solid rgba(213, 198, 170, 0.8);
}

.site-header .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-width: 0;
  padding: 0.9rem 0;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 0.8rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.site-brand__mark {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--accent) 0%, #13453c 100%);
  color: white;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.1;
}

.site-brand__text span {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.76rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.site-nav__list,
.site-nav__more-menu {
  display: flex;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__list {
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.site-nav__item,
.site-nav__more {
  flex: 0 0 auto;
}

.site-nav__more {
  position: relative;
}

.site-nav a,
.site-nav__more-button {
  display: inline-block;
  padding: 0.55rem 0.8rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font: inherit;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 140ms ease, color 140ms ease, transform 140ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current=page],
.site-nav__more-button:hover,
.site-nav__more-button[aria-expanded=true],
.site-nav__more--current .site-nav__more-button {
  background: rgba(15, 108, 92, 0.1);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

.site-nav__more-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 30;
  display: none;
  min-width: 12rem;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.35rem;
  border: 1px solid rgba(213, 198, 170, 0.95);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: var(--shadow);
}

.site-nav__more-menu .site-nav__item {
  width: 100%;
}

.site-nav__more-menu a {
  display: block;
  width: 100%;
  border-radius: 0.55rem;
}

.site-nav__more-button[aria-expanded=true] + .site-nav__more-menu {
  display: flex;
}

.hero {
  padding: 4.2rem 0 2rem;
}

.hero .shell {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.doc-card {
  border: 1px solid rgba(213, 198, 170, 0.95);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.doc-card {
  margin-top: 1em;
}

.hero__content {
  padding: 2.2rem;
}

.hero__lede {
  max-width: 42rem;
  margin: 1.2rem 0 0;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  gap: 0.85rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
}

.button--primary {
  background: var(--accent);
  color: white;
}

.button--primary:hover {
  color: white;
  background: var(--accent-strong);
}

.button--secondary {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.hero__panel {
  padding: 1.2rem;
  background: linear-gradient(180deg, rgba(11, 42, 47, 0.94), rgba(29, 42, 47, 0.97));
}

.hero__panel pre {
  margin: 0;
  min-height: 100%;
  background: transparent;
  box-shadow: none;
}

.home-content,
.doc-page {
  padding: 0 0 3rem;
}

.home-content .shell {
  display: block;
}

.doc-card__header {
  padding: 2rem 2rem 0;
}

.doc-card__body {
  padding: 1rem 2rem 2rem;
}

.page-intro {
  margin-top: 0.8rem;
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
  font-weight: 700;
}

.doc-card table {
  width: 100%;
  border-collapse: collapse;
}

.doc-card th,
.doc-card td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.doc-image__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0;
  padding: 1rem;
  border-radius: var(--radius-md);
  background-color: var(--code-bg);
}

.doc-image__image {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.site-footer {
  padding: 0 0 2.5rem;
}

.site-footer .shell {
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(14rem, 1.6fr) minmax(8rem, 0.8fr) minmax(8rem, 0.8fr) minmax(14rem, 1.2fr);
  gap: 1.8rem;
  align-items: start;
}

.site-footer__brand,
.site-footer__links,
.site-footer__aside {
  min-width: 0;
}

.site-footer__brand p,
.site-footer__aside p {
  margin: 0.7rem 0 0;
}

.site-footer__mark {
  display: inline-grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.75rem;
  background: var(--accent);
  color: white;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0;
}

.site-footer__mark:hover {
  color: white;
  background: var(--accent-strong);
}

.site-footer__meta {
  font-size: 0.9rem;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-footer__links h2 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__links a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.site-footer__social {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.95rem;
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(15, 108, 92, 0.08);
  transition: transform 140ms ease, background-color 140ms ease, color 140ms ease;
}

.site-footer__social-link:hover {
  transform: translateY(-1px);
  background: rgba(15, 108, 92, 0.14);
  color: var(--accent);
}

.site-footer__social-link svg {
  width: 1.3rem;
  height: 1.3rem;
  fill: currentColor;
}

@media (max-width: 900px) {
  .hero .shell {
    grid-template-columns: 1fr;
  }
  .home-content .shell {
    display: block;
  }
  .site-header .shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }
  .site-brand,
  .site-nav {
    width: 100%;
  }
  .site-nav ul {
    justify-content: flex-start;
  }
  .site-nav__more-menu {
    right: auto;
    left: 0;
  }
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  body {
    font-size: 15px;
  }
  .hero {
    padding-top: 2.2rem;
  }
  .hero__content,
  .hero__panel,
  .doc-card__header,
  .doc-card__body {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }
}

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