html { 
	font-size: var(--font-base);
}
h1,
.h1,
h2, 
.h2,
h3, 
.h3 { 
	--font-resize: .5;
	font-family: var(--font-family); 
	font-weight: var(--font-weight-bold);
	text-transform:lowercase;
	margin: 0;
}
h1,
.h1 { 
	font-size: calc(6.4em * var(--font-resize));
	line-height: 1.1;
}
h2, 
.h2 { 
  font-size: calc(4.8em * var(--font-resize));
	line-height: 1.2;
}
.h3, 
h3 { 
	--font-resize: .8;
  font-size: calc(2.4em * var(--font-resize));
	line-height: 1.3;
}
p,
.p, 
ul li {  
	font-family: var(--font-family); 
	font-weight: var(--font-weight-light);
	font-size: 1.6em;
}
input, 
textarea, 
select, 
label { 
	font-family: var(--font-family);
  font-weight: var(--font-weight-medium);
}
strong, 
b { 
	font-weight: var(--font-weight-medium);
}
@media only screen and (min-width: 600px) { 
	h1, 
	.h1,
	h2,
	.h2 { 
		--font-resize: .6;
	}
	h3, 
	.h3 { 
		--font-size: .9;
	}
}
@media only screen and (min-width: 992px) { 
	h1, 
	.h1,
	h2,
	.h2 { 
		--font-resize: .75;
	}
	h3, 
	.h3 { 
		--font-resize: 1;
	}
	p, 
	.p { 
		font-size: 1.8em;
	}
}
@media only screen and (min-width: 1200px) { 
	h1, 
	.h1,
	h2,
	.h2 { 
		--font-resize: 1;
	}
}
* { 
	box-sizing: border-box; 
}
.offset-text-lg { 
	transform: translateX(-6px);
}
@media only screen and (min-width: 1023px) { 
	.offset-text-lg { 
		transform: translateX(-12px);
	}
	.inline-break { 
		display:block;
	}
}
.offset-text-sm { 
	transform: translateX(-2px);
}
.brand-dot {
	position: relative;
	text-decoration: none;
	color: inherit;
}
.brand-dot:before {
  content: '';
  display: inline-block;
  transform: translateY(0);
  width: 0.2em;
  height: 0.2em;
  border-radius: 100%;
  background: rgb(var(--brand-primary));
	margin-right: 5px; 
}
.list { 
	margin: 0;
	padding: 0;
	list-style-type: none;
}
.list--dash li:before { 
	content: '-'; 
	margin-right: 5px; 
}
.credit { 
	margin-top: 3rem;
}
.credit p { 
	font-size: 14px!important; 
	display: flex;
	align-items: center;
} 
.credit em {
	opacity: .7;
}
.credit__logo { 
	display: inline-block;
	opacity: 1; 
}
.credit__logo svg { 
	height: 1rem;
	width: auto;
	margin: 0 4px;
}
.credit__logo g { 
	fill: rgb(var(--brand-black));
}
.fade-out { 
	animation: fadeOut linear; 
	animation-timeline: view();
	animation-range: exit;
}
@keyframes fadeOut  { 
	to { 
		opacity: 0; 
	}
}
.form__container { 
	position: relative; 
	display: flex;
	flex-direction: column; 
	justify-content: center;  
}
.form__success { 
	opacity: 0; 
	position: absolute;
	pointer-events: none; 
}
.blur { 
	filter: blur(8px);
	animation-name: unblur; 
	animation-timing-function: ease;
	animation-delay: 3s;
	animation-iteration-count: 1; 
	animation-duration: .5s;
	/* animation-fill-mode: forwards; */
}
@-webkit-keyframes unblur { 
	0% { 
		filter: blur(8px);
	}
	100% { 
		filter: blur(0px)
	}
}
@keyframes unblur { 
	0% { 
		filter: blur(8px);
	}
	100% { 
		filter: blur(0px)
	}
}
@keyframes disappear { 
	0% { 
		opacity: 1; 
	}
	100% { 
		opacity: 0; 
	}
}
@-webkit-keyframes disappear { 
	0% { 
		opacity: 1; 
	}
	100% { 
		opacity: 0; 
	}
}
.form__success { 
	opacity: 0; 
	transition: all ease .3s; 
}
.form__inner.blur + .form__success { 
	opacity: 1; 
	animation-name: disappear; 
	animation-timing-function: ease;
	animation-delay: 3s;
	animation-iteration-count: 1; 
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
.form__inner { 
	transition: all ease .3s;
}
.form__inner.hidden { 
	opacity: 0; 
}
.form__inner.hidden ~ .form__success { 
	opacity: 1;
}
.creator .form__container { 
	justify-content: flex-start; 
}
.creator .form__success p { 
	font-weight: var(--font-weight-light);
}
.fade-in {
	animation-name: fadeIn; 
	opacity: 0; 
	animation-timing-function: ease-in;
	animation-duration: .5s;
	animation-fill-mode: forwards;
	animation-iteration-count: 1;
}
@-webkit-keyframes fadeIn { 
	0% { 
		opacity: 0;
	}
	100% { 
		opacity: 1; 
	}
}	
@keyframes fadeIn { 
	0% { 
		opacity: 0;
	}
	100% { 
		opacity: 1; 
	}
}	
/* Forms */
.docs-support-form {
	max-width: 700px;
	margin-top: 2.2rem;
}

.docs-support-form .form-field {
	position: relative;
	margin: 0 0 1.15rem;
}

.docs-support-form .form-field__group {
	display: flex;
	align-items: flex-start;
	gap: 1.2rem;
    margin-bottom: 1.2rem;
}

.docs-support-form .form-field__group > .form-field {
	flex: 1 1 0;
	margin: 0;
}

@media only screen and (max-width: 760px) {
	.docs-support-form .form-field__group {
		flex-direction: column;
		gap: 0;
	}
}

.docs-support-form .form-field > label {
	position: static;
	display: block;
	margin: 0 0 0.5rem;
	padding: 0;
	transform: none;
	pointer-events: auto;
	font-size: 1.4rem;
	font-weight: var(--font-weight-medium);
	line-height: 1.3;
	color: rgba(var(--brand-black), 0.88);
}

.docs-support-form .form-field--floating > label {
	position: absolute;
	top: 1rem;
	left: 1rem;
	margin: 0;
	pointer-events: none;
	font-size: 1.3rem;
	font-weight: var(--font-weight-medium);
	line-height: 1;
	color: rgba(var(--brand-black), 0.7);
	transition: opacity ease 0.2s, transform ease 0.2s;
	z-index: 1;
}

.docs-support-form .form-field input:not([type="file"]),
.docs-support-form .form-field textarea,
.docs-support-form .form-field select {
	width: 100%;
	padding: 1.95rem 1rem 0.85rem;
	font-family: var(--font-family);
	font-size: 1.6rem;
	line-height: 1.45;
	color: rgb(var(--brand-black));
	background: rgba(var(--brand-white), 0.96);
	border: 3px solid rgb(var(--brand-black));
	outline: none;
	border-radius: 0;
	transition: border-color ease 0.2s, background-color ease 0.2s;
	appearance: none;
	-webkit-appearance: none;
}

.docs-support-form .form-field--floating input::placeholder,
.docs-support-form .form-field--floating textarea::placeholder {
	color: transparent;
}

.docs-support-form .form-field--floating:focus-within > label,
.docs-support-form .form-field--floating:has(input:not(:placeholder-shown)) > label,
.docs-support-form .form-field--floating:has(textarea:not(:placeholder-shown)) > label {
	opacity: 0;
	transform: translateY(-0.3rem);
}

.docs-support-form .form-field--floating:focus-within input::placeholder,
.docs-support-form .form-field--floating:focus-within textarea::placeholder {
	color: rgba(var(--brand-black), 0.52);
}

.form-field--secondary textarea,
.form-field--secondary select {
	border-color: rgba(var(--brand-black), 0.72);
	color: rgb(var(--brand-black));
}

.docs-support-form .form-field textarea {
	resize: vertical;
	min-height: 130px;
}

.docs-support-form .form-field select {
	background-image: linear-gradient(45deg, transparent 50%, rgba(var(--brand-black), 0.7) 50%), linear-gradient(135deg, rgba(var(--brand-black), 0.7) 50%, transparent 50%);
	background-position: calc(100% - 16px) calc(50% - 3px), calc(100% - 10px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 2.8rem;
}

.docs-support-form .form-field input[type="file"] {
	padding: 0.75rem 0 0;
	border-bottom: 0;
	background: transparent;
	font-size: 1.4rem;
	line-height: 1.4;
}

.docs-support-form .form-field input[type="file"]::file-selector-button {
	margin-right: 1rem;
	padding: 0.55rem 0.8rem;
	border: 3px solid rgb(var(--brand-black));
	background: rgba(var(--brand-white), 0.72);
	color: rgb(var(--brand-black));
	font-family: var(--font-family);
	font-size: 1.2rem;
	font-weight: var(--font-weight-medium);
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background-color ease 0.2s, border-color ease 0.2s;
}

.docs-support-form .form-field input[type="file"]:hover::file-selector-button,
.docs-support-form .form-field input[type="file"]:focus::file-selector-button {
	/* background: rgba(var(--brand-primary), 0.25); */
	border-color: rgb(var(--brand-primary));
}

.docs-support-form .form-field__hint {
	display: block;
	margin-top: 0.65rem;
	font-size: 1.25rem;
	line-height: 1.4;
	color: rgba(var(--brand-black), 0.64);
}

.docs-support-form .form-field input:focus,
.docs-support-form .form-field textarea:focus,
.docs-support-form .form-field select:focus {
	border-color: rgb(var(--brand-black));
	background: rgba(var(--brand-white), 1);
}

.docs-support-form .form-field ::placeholder {
	color: rgba(var(--brand-black), 0.52);
}

.docs-support-form__meta {
	margin: 0.5rem 0 1rem;
	font-size: 1.3rem;
	line-height: 1.45;
	color: rgba(var(--brand-black), 0.66);
}

.docs-support-form__actions {
	margin: 0;
}

.docs-support-form__actions button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: .25rem solid rgba(var(--brand-black), .16);
	border-radius: 999rem;
	background: rgba(var(--brand-black), .02);
	color: rgb(var(--brand-black));
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 1.2rem;
	font-weight: var(--font-weight-bold);
	padding: .95rem 1.45rem;
	cursor: pointer;
	transition: transform ease .25s, border-color ease .25s, background-color ease .25s, color ease .25s;
}

.docs-support-form__actions button:hover {
	transform: translateY(-0.125rem);
	border-color: rgba(var(--brand-primary), .6);
	color: rgb(var(--brand-black));
}

.topbar__header {
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    background: rgba(var(--brand-white), .94);
    backdrop-filter: blur(8px);
    border-bottom: var(--ui-border-strong) solid rgb(var(--brand-black));
}

.topbar__header .brand-dot {
    text-decoration: none;
    font-size: 2.7rem;
    font-weight: 700;
    text-transform: lowercase;
}

.topbar__links {
    display: flex;
    align-items: center;
    gap: 0;
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    font-size: 1.3rem;
    letter-spacing: .12em;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity ease .2s;
}

.topbar__link:hover {
    opacity: .65;
}

.topbar__link--secondary {
    font-size: 1.5rem;
    font-weight: var(--font-weight-medium);
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.45;
}

.topbar__links a:not(:last-child)::after {
    content: '•';
    margin: 0 .9rem;
    opacity: .45;
    color: rgba(var(--brand-black), .78);
}

.topbar__links .link-external {
    font-family: var(--font-family);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .12em;
    text-transform: uppercase;
}

@media only screen and (min-width: 900px) {
    .topbar__header {
        padding: 1.6rem 2.4rem;
    }
}

.page-content {
    --prose-font-size: 1.75rem;
    --prose-line-height: 1.65;
}

.article-content.page-content {
    --prose-font-size: 1.85rem;
    --prose-line-height: 1.72;
}

.page-content > *:first-child {
    margin-top: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    line-height: 1.15;
    margin: 0 0 1.4rem;
    font-weight: 600;
}

.page-content h4 {
    font-size: clamp(1.7rem, 2.2vw, 2.2rem);
    margin-top: 2rem;
}

.page-content h5 {
    font-size: clamp(1.5rem, 2vw, 1.95rem);
    margin-top: 1.8rem;
}

.page-content h6 {
    font-size: clamp(1.35rem, 1.7vw, 1.65rem);
    margin-top: 1.6rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.page-content p,
.page-content li,
.page-content blockquote {
    font-size: var(--prose-font-size);
    line-height: var(--prose-line-height);
}

.page-content p,
.page-content ul,
.page-content ol,
.page-content pre,
.page-content table,
.page-content blockquote {
    margin: 0 0 1.8rem;
}

.page-content ul,
.page-content ol {
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: .7rem;
}

.page-content code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
    font-size: .92em;
    background: rgba(var(--brand-black), .08);
    padding: .15em .35em;
}

.page-content pre {
    overflow-x: auto;
    padding: 1.2rem;
    border: 2px solid rgba(var(--brand-black), .2);
    background: #f6f8f0;
}

.page-content pre code {
    background: transparent;
    padding: 0;
}

.page-content blockquote {
    position: relative;
    border-left: .35rem solid rgba(var(--brand-primary),.35);
    padding: 1.1rem 1.3rem 1.1rem 1.5rem;
    background: rgba(255, 255, 255, .25);
    border-radius: .4rem;
    margin-left: 0;
}

.page-content blockquote > *:last-child {
    margin-bottom: 0;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.45rem;
}

.page-content th,
.page-content td {
    border: 2px solid rgba(var(--brand-black), .16);
    padding: .8rem;
    text-align: left;
}
.link-external {
    text-decoration: none!important;
    font-size: inherit;
    line-height: inherit;
    text-transform: uppercase!important;
    font-family: var(--font-family);
    font-weight: var(--font-weight-bold);
    color: rgb(var(--brand-black));
    transition: all ease .3s;
}

.link-external:after {
    content: url("/assets/brand-arrow.svg");
    margin-left: .4em;
    display: inline-block;
    transition: all ease-out .3s;
    transform: rotate(0deg);
    color: rgb(var(--brand-primary));
}

.link-external:hover:after {
    transform: rotate(360deg);
}

html {
    font-size: var(--font-base);
}
* {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font-family);
    background: rgb(var(--brand-white));
    color: rgb(var(--brand-black));
}
a {
    color: inherit;
}
.docs-app {
    width: 100%;
    padding: 1.6rem 1.2rem 5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.4rem;
}
.docs-sidebar {
    /* border: 3px solid rgb(var(--brand-black)); */
    /* background: rgba(var(--brand-white), .92); */
    /* padding: 1.4rem; */
    align-self: start;
    /* box-shadow: 0 10px 20px rgba(var(--brand-black), .05); */
}
.docs-help-column {
    padding: 0;
}
.docs-sidebar__eyebrow {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    opacity: .65;
}
.docs-menu {
    margin: 0;
}
.docs-menu--mobile {
    position: sticky;
    top: 7rem;
    z-index: 9;
    background: rgba(var(--brand-white), .9);
}
.docs-nav--desktop {
    display: none;
}
.docs-menu__toggle {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    padding: .95rem 1rem;
    border: 3px solid rgba(var(--brand-black));
    background: rgba(var(--brand-white), .78);
    transition: background-color ease .2s, border-color ease .2s;
}
.docs-menu--mobile[open] .docs-menu__toggle {
    border-color: rgba(var(--brand-black), .9);
    background: rgba(var(--brand-primary), .14);
}
.docs-menu__toggle::-webkit-details-marker {
    display: none;
}
.docs-menu__label {
    font-size: 1rem;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .75;
    flex-shrink: 0;
}
.docs-menu__current {
    font-size: 1.35rem;
    line-height: 1.3;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.docs-menu__toggle:after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
    margin-left: .5rem;
    flex-shrink: 0;
}
.docs-menu[open] .docs-menu__toggle:after {
    content: '-';
}
.docs-nav {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    max-height: calc(100vh - 5rem);
    overflow-y: auto;
    padding-right: .2rem;
    margin-top: .4rem;
}
.docs-nav.docs-nav--desktop {
    display: none;
}
.docs-menu--mobile:not([open]) > .docs-nav--mobile {
    display: none;
}
.docs-menu--mobile[open] > .docs-nav--mobile {
    display: flex;
}
.docs-nav__group {
    margin: 0;
    border: 2px solid rgba(var(--brand-black), .12);
    background: rgba(var(--brand-white), .6);
}
.docs-nav__group[open] {
    border-color: rgba(var(--brand-black), .2);
}
.docs-nav__group-title {
    list-style: none;
    cursor: pointer;
    padding: .8rem 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    background: rgba(var(--brand-black), .04);
}
.docs-nav__group-title::-webkit-details-marker {
    display: none;
}
.docs-nav__group-title:after {
    content: '+';
    float: right;
    font-size: 1.4rem;
    line-height: 1;
}
.docs-nav__group[open] .docs-nav__group-title:after {
    content: '-';
}
.docs-nav__group-items {
    padding: .4rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.docs-nav__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    padding: .9rem 1rem;
    min-height: 4.4rem;
    border: 2px solid rgba(var(--brand-black), .14);
    background: rgba(var(--brand-white), .78);
    font-size: 1.4rem;
    transition: background-color ease .2s, border-color ease .2s, transform ease .2s;
}
.docs-nav__link:hover {
    background: rgba(var(--brand-primary), .12);
    border-color: rgba(var(--brand-black), .55);
}
.docs-nav__link.is-current {
    background: rgba(var(--brand-primary), .18);
    border-color: rgb(var(--brand-black));
    font-weight: 600;
}
.docs-nav__group .docs-nav__link {
    font-size: 1.35rem;
    padding: .75rem .9rem;
}
.docs-help {
    margin-top: 0;
    padding: 1.35rem;
    border: 2px solid rgba(var(--brand-black), .24);
    background: rgba(var(--brand-primary), .18);
}
.docs-cta {
    margin-top: 0;
    padding: .6rem 1.2rem;
    border: 0;
    background: transparent;
}
.docs-cta__title {
    margin: 0 0 .45rem;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: 600;
}
.docs-cta__text {
    margin: 0 0 .95rem;
    font-size: 1.35rem;
    line-height: 1.45;
}
.docs-help-column {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-top: .8rem;
}
.docs-help-column__credit {
    display: inline-block; 
    text-align: left;
    padding: 1rem;
}
.docs-help-column__credit svg g {
    fill: rgb(var(--brand-black));
    text-decoration: none;
}
.docs-help__title {
    margin: 0 0 .6rem;
    font-size: 1.8rem;
    line-height: 1.2;
    font-weight: 600;
}
.docs-help__text {
    margin: 0 0 1rem;
    font-size: 1.4rem;
    line-height: 1.45;
}
.docs-help__text [data-ai-chat-trigger] {
    cursor: pointer;
    text-decoration: underline;
    font-weight: 500;
}
.docs-help__links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
}
.docs-help__links a:not(.link-external) {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 700;
    justify-content: center;
    padding: .95rem 1.45rem;
    border: .25rem solid rgba(var(--brand-black), .16);
    border-radius: 999rem;
    background: rgba(var(--brand-black), .02);
    color: rgb(var(--brand-black));
    transition: transform ease .25s, border-color ease .25s, background-color ease .25s, color ease .25s;
}
.docs-help__links a:not(.link-external):hover {
    transform: translateY(-0.125rem);
    border-color: rgba(var(--brand-primary), .6);
    color: rgb(var(--brand-black));
}
.docs-cta .docs-help__links {
    display: block;
    gap: 0;
}
.docs-cta .docs-help__links a:not(.link-external):hover {
    background: transparent;
    border-color: transparent;
}
.docs-cta .docs-help__links .link-external {
    font-size: 1.3rem;
    line-height: 1.45;
    letter-spacing: .03em;
    text-transform: none;
    text-decoration: underline;
    text-underline-offset: .18em;
    color: rgb(var(--brand-black));
}
.docs-main {
    padding: 1.8rem 1.4rem 3rem;
    min-width: 0;
}
.docs-main__eyebrow {
    margin: 0 0 1.4rem;
    font-size: 1.2rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .6;
}
.docs-content {
    max-width: 800px;
}
.docs-content h1 {
    font-size: clamp(3rem, 5vw, 5.2rem);
    margin-bottom: 1.8rem;
    text-transform: lowercase;
    position: relative;
    padding-bottom: 1.4rem;
}
.docs-content h2 {
    font-size: clamp(2.2rem, 3.2vw, 3.5rem);
    margin-top: 3rem;
}
.docs-content h3 {
    font-size: clamp(1.9rem, 2.8vw, 2.6rem);
    margin-top: 2.5rem;
}
.docs-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgb(var(--brand-black));
}
@media only screen and (min-width: 900px) {
    .docs-app {
        padding: 0;
        grid-template-columns: minmax(250px, 290px) minmax(0, 1fr);
        gap: 0;
    }
    .docs-help-column {
        padding: 0 4rem 4rem;
        grid-column: 2;
        position: static;
        align-self: stretch;
        margin-top: 0;
    }
    .docs-sidebar {
        position: sticky;
        top: 7.5rem;
        padding: .4rem;
        align-self: start;
        min-height: calc(100vh - 7.5rem);
        border-right: 3px solid rgb(var(--brand-black));
    }
    .docs-main {
        padding: 3.6rem 4rem 5.8rem;
    }
    .docs-menu--mobile {
        display: none;
    }
    .docs-nav.docs-nav--desktop {
        display: flex;
        margin-top: 0;
        padding-right: 0;
        max-height: calc(100vh - 8.6rem);
        overflow-y: auto;
    }
}
@media only screen and (min-width: 1281px) {
    .docs-app {
        grid-template-columns: minmax(250px, 290px) minmax(0, 1fr) minmax(190px, 240px);
    }
    .docs-main {
        min-height: calc(100vh - 7.5rem);
        border-right: 3px solid rgb(var(--brand-black));
    }
    .docs-help-column {
        padding: .4rem;
        grid-column: 3;
        position: sticky;
        top: 7.5rem;
        align-self: start;
    }
}


.docs-chat {
	position: fixed;
	right: 1.2rem;
	bottom: 1.2rem;
	z-index: 60;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: .75rem;
	max-width: calc(100vw - 2.4rem);
}

.docs-chat__trigger,
.docs-chat__expand,
.docs-chat__clear {
	font: inherit;
	border: 2px solid rgb(var(--brand-black));
	background: rgb(var(--brand-white));
	color: rgb(var(--brand-black));
	cursor: pointer;
}

.docs-chat__trigger {
	transition: opacity .22s ease, transform .22s ease, box-shadow .22s ease;
	display: inline-flex;
	flex-direction: column;
	align-items: flex-start;
	gap: .15rem;
	min-width: 14rem;
	padding: .95rem 1.1rem;
	box-shadow: 2px 2px 0 rgba(var(--brand-black), .12);
	text-align: left;
	text-transform: none;
}

.docs-chat.is-opening .docs-chat__trigger,
.docs-chat.is-open .docs-chat__trigger {
	opacity: 0;
	pointer-events: none;
	transform: translateY(.25rem) scale(.98);
}

.docs-chat__trigger-label {
	font-size: 1.35rem;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
}

.docs-chat__trigger-meta {
	font-size: 1.05rem;
	line-height: 1.2;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .72;
}

.docs-chat__panel {
	display: none;
	flex-direction: column;
	position: relative;
	width: min(38rem, calc(100vw - 2.4rem));
	max-height: min(72vh, 60rem);
	border: 2px solid rgb(var(--brand-black));
	background: rgba(var(--brand-white), .9);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	box-shadow: 0 20px 40px rgba(var(--brand-black), .16);
	overflow: hidden;
}

.docs-chat.is-open .docs-chat__panel {
	display: flex;
}

.docs-chat__header {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	align-items: flex-start;
	padding: 1rem 1rem .85rem;
	border-bottom: 1px solid rgba(var(--brand-black), .12);
}

.docs-chat__header-actions {
	display: inline-flex;
	align-items: center;
	gap: .35rem;
}

.docs-chat__eyebrow {
	margin: 0 0 .3rem;
	font-size: 1.05rem;
	letter-spacing: .14em;
	text-transform: uppercase;
	opacity: .72;
}

.docs-chat__title {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.15;
	text-transform: lowercase;
}

.docs-chat__minimize,
.docs-chat__expand,
.docs-chat__clear {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.8rem;
	height: 2.8rem;
	padding: 0;
	border: 2px solid rgb(var(--brand-black));
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.docs-chat__minimize svg {
	width: 1.4rem;
	height: 1.4rem;
}

.docs-chat__expand svg {
	width: 1.4rem;
	height: 1.4rem;
}

.docs-chat.is-expanded .docs-chat__expand svg rect:nth-child(2) {
	fill: rgb(var(--brand-white));
}

.docs-chat__clear svg {
	width: 1.5rem;
	height: 1.5rem;
}

.docs-chat__confirm-overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(var(--brand-white), .92);
	backdrop-filter: blur(4px);
	z-index: 10;
}

.docs-chat__confirm {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .75rem;
	padding: 1.2rem;
	text-align: center;
}

.docs-chat__confirm-text {
	margin: 0;
	font-size: 1.3rem;
	font-weight: 500;
}

.docs-chat__confirm-actions {
	display: flex;
	gap: .5rem;
}

.docs-chat__info-body {
	font-size: 1.3rem;
	font-weight: 400;
	line-height: 1.55;
	max-width: 32rem;
	text-align: left;
}

.docs-chat__confirm-yes,
.docs-chat__confirm-no {
	padding: .55rem .9rem;
	border: 2px solid rgb(var(--brand-black));
	font: inherit;
	font-size: 1.1rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	cursor: pointer;
}

.docs-chat__confirm-yes {
	background: rgb(var(--brand-black));
	color: rgb(var(--brand-white));
}

.docs-chat__confirm-yes:hover {
	background: rgba(var(--brand-black), .86);
}

.docs-chat__confirm-no {
	background: rgb(var(--brand-white));
	color: rgb(var(--brand-black));
}

.docs-chat__confirm-no:hover {
	background: rgba(var(--brand-primary), .14);
}

.docs-chat__status {
	padding: .8rem 1rem;
	font-size: 1.2rem;
	line-height: 1.45;
	background: rgba(var(--brand-primary), .08);
	border-bottom: 1px solid rgba(var(--brand-black), .08);
}

.docs-chat__messages {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	padding: 1rem;
	overflow-y: auto;
	min-height: 20rem;
	max-height: 36rem;
}

.docs-chat__message {
	padding: .85rem 1rem;
	border: 1px solid rgba(var(--brand-black), .12);
	background: rgba(var(--brand-white), .96);
	font-size: 1.35rem;
	line-height: 1.5;
	white-space: pre-wrap;
}

.docs-chat__message-copy {
	margin: 0 0 .85rem;
	font-size: 1.35rem;
	font-weight: normal;
}

.docs-chat__md-list--unordered,
.docs-chat__md-list--ordered {
	font-size: 1.35rem;
	margin: .55rem 0;
	padding-left: 1.4rem;
}

.docs-chat__md-list--ordered {
	list-style-type: decimal;
}

.docs-chat__md-list--unordered li,
.docs-chat__md-list--ordered li {
	font-size: inherit;
	font-weight: 300;
	line-height: 1.5;
}

.docs-chat__message--rich {
	white-space: normal;
}

.docs-chat__message--assistant {
	background: rgba(var(--brand-primary), .08);
}

.docs-chat__message--assistant-formatted {
	white-space: normal;
}

.docs-chat__md-paragraph {
	margin: 0;
	max-width: 600px;
	width: 100%;
	font-size: inherit;
	line-height: inherit;
}

.docs-chat__md-paragraph + .docs-chat__md-paragraph {
	margin-top: .55rem;
}

.docs-chat__md-list {
	margin: .55rem 0;
	padding-left: 1.4rem;
}

.docs-chat__md-list li + li {
	margin-top: .35rem;
}

.docs-chat__message code {
	padding: .1rem .32rem;
	border: 1px solid rgba(var(--brand-black), .18);
	background: rgba(var(--brand-white), .82);
	font-size: .92em;
}

.docs-chat__message--system {
	font-size: 1.15rem;
	opacity: .78;
	border-style: dashed;
}

.docs-chat__message a:not(.docs-chat__buy-card-button) {
	color: rgb(var(--brand-black));
	text-decoration: underline;
	text-underline-offset: .2em;
}

.docs-chat__message a:hover {
	opacity: .7;
}

.docs-chat__buy-card {
	display: grid;
	grid-template-columns: minmax(0, 6rem) minmax(0, 1fr);
	max-width: 600px;
	gap: 1rem;
	padding: .7rem;
	border: 1px solid rgba(var(--brand-black), .2);
	background: rgba(var(--brand-white), .70);
	white-space: normal;
}

.docs-chat__buy-card-media {
	background: rgba(var(--brand-black), .04);
	overflow: hidden;
	border: 1px solid rgba(var(--brand-black), .12);
}

.docs-chat__buy-card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.docs-chat__buy-card-content {
	display: flex;
	flex-direction: column;
	gap: .4rem;
	justify-content: center;
}

.docs-chat__buy-card-eyebrow {
	margin: 0;
	font-size: .95rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .72;
}

.docs-chat__buy-card-title {
	margin: 0;
	font-size: 1.4rem;
	line-height: 1.2;
	text-transform: lowercase;
}

.docs-chat__buy-card-desc {
	margin: 0;
	font-size: 1.1rem;
	line-height: 1.35;
	opacity: .6;
}

.docs-chat__buy-card-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	align-self: flex-start;
	padding: .6rem .9rem;
	border: 2px solid rgb(var(--brand-black));
	background: rgb(var(--brand-black));
	color: rgb(var(--brand-white));
	font-size: 1rem;
	letter-spacing: .06em;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
}

.docs-chat__buy-card-button:hover {
	background: rgba(var(--brand-black), .86);
}

.docs-chat__buy-card-note {
	margin: .35rem 0 0;
	font-size: .95rem;
	opacity: .5;
}

.docs-chat__app-card-media {
	aspect-ratio: 1 / 1;
	max-width: 6rem;
}

.docs-chat__app-recommendation {
	margin-top: .6rem;
	white-space: normal;
}

.docs-chat__app-recommendation-link {
	display: inline-flex;
	align-items: center;
	gap: .4rem;
	padding: .55rem .85rem;
	border: 1px solid rgba(var(--brand-black), .15);
	background: rgba(var(--brand-primary), .06);
	text-decoration: none;
	color: rgb(var(--brand-black));
	font-size: 1.2rem;
	line-height: 1.4;
	font-weight: 500;
	transition: background .15s ease, border-color .15s ease;
}

.docs-chat__app-recommendation-link:hover {
	background: rgba(var(--brand-primary), .12);
	border-color: rgba(var(--brand-black), .25);
	opacity: 1;
}

.docs-chat__app-recommendation-icon {
	width: 2rem;
	height: 2rem;
	border-radius: .35rem;
	object-fit: cover;
	flex-shrink: 0;
}

.docs-chat__app-recommendation-star {
	font-size: 1.1rem;
	line-height: 1;
	color: rgb(var(--brand-primary));
	flex-shrink: 0;
}

.docs-chat__app-recommendation-name {
	font-weight: 600;
}

.docs-chat__form {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	padding: 1rem;
	border-top: 1px solid rgba(var(--brand-black), .12);
}

.docs-chat__label-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.docs-chat__label {
	font-size: 1.15rem;
	letter-spacing: .08em;
	text-transform: uppercase;
	opacity: .72;
}

.docs-chat__info {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.6rem;
	height: 1.6rem;
	padding: 0;
	border: none;
	background: transparent;
	color: rgb(var(--brand-black));
	opacity: .45;
	cursor: pointer;
	transition: opacity .15s ease;
}

.docs-chat__info:hover {
	opacity: .8;
}

.docs-chat__info svg {
	width: 1.4rem;
	height: 1.4rem;
}

.docs-chat__input {
	width: 100%;
	resize: vertical;
	min-height: 7rem;
	padding: .9rem 1rem 3rem;
	border: 2px solid rgba(var(--brand-black), .22);
	background: rgb(var(--brand-white));
	font: inherit;
	font-size: 1.35rem;
	line-height: 1.45;
	color: rgb(var(--brand-black));
}

.docs-chat__input:focus {
	outline: none;
	border-color: rgb(var(--brand-black));
}

.docs-chat__input-wrapper {
	position: relative;
}

.docs-chat__send {
	position: absolute;
	right: .8rem;
	bottom: .8rem;
	width: 2.2rem;
	height: 2.2rem;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	background: rgb(var(--brand-black));
	color: rgb(var(--brand-white));
	border-radius: 50%;
	cursor: pointer;
	font: inherit;
}

.docs-chat__send svg {
	width: 1.1rem;
	height: 1.1rem;
}

.docs-chat__send:hover {
	background: rgba(var(--brand-black), .8);
}

.docs-chat__minimize:hover,
.docs-chat__expand:hover,
.docs-chat__clear:hover,
.docs-chat__trigger:hover {
	background: rgba(var(--brand-primary), .14);
}

.docs-chat.is-expanded .docs-chat__expand:hover svg rect:nth-child(2) {
	fill: rgb(213, 246, 219);
}

.docs-chat.is-expanded {
	left: 0;
	right: 0;
	bottom: 0;
	top: 2.8rem;
	max-width: none;
	align-items: stretch;
	padding: 0;
	gap: 0;
}

.docs-chat.is-expanded .docs-chat__panel {
	width: 100%;
	height: 100%;
	max-height: none;
	border-left: 0;
	border-right: 0;
	border-bottom: 0;
	border-top: 3px solid rgb(var(--brand-black));
	border-radius: 0;
	box-shadow: none;
}

.docs-chat.is-expanded .docs-chat__expand svg {
	transform: rotate(0deg);
}

.docs-chat.is-expanded .docs-chat__messages {
	max-height: none;
	flex: 1;
}

.docs-chat.is-expanded .docs-chat__form {
	margin-top: auto;
}

@media only screen and (max-width: 640px) {
	.docs-chat {
		right: .8rem;
		bottom: .8rem;
		max-width: calc(100vw - 1.6rem);
	}

	.docs-chat__trigger {
		min-width: 12rem;
	}

	.docs-chat__buy-card {
		grid-template-columns: 1fr;
	}

	.docs-chat__buy-card-media {
		aspect-ratio: 16 / 9;
	}
}

