
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

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

:root {
	--color-bg: oklch(100% 0 0);
	--color-text: oklch(14% 0 0);
	--color-muted: oklch(50% 0 0);
	--color-border: oklch(91% 0 0);
	--color-surface: oklch(97% 0 0);
	--color-accent: #43D100;
	--color-accent-hover: #35a800;
	--color-brand: #43D100;
	--color-core-green: #43D100;
	--color-lime-green: #9CF713;
	--color-pure-white: #FFFFFF;
	--color-instant-black: #0F101F;
	--color-gray-1: #F2F2F4;
	--color-gray-2: #D4D3DB;
	--color-gray-3: #B6B5C2;
	--color-gray-4: #898798;
	--color-gray-5: #5C5A6B;
	--color-gray-6: #2E2D38;
	--gradient-green: linear-gradient(90deg, #43D100 0%, #9CF713 100%);
	--gradient-dark-base: linear-gradient(90deg, #202235 0%, #0F101F 100%);
	--gradient-black: linear-gradient(90deg, #393939 0%, #010101 100%);
	--gradient-dark-green: linear-gradient(90deg, #040407 0%, #46B91B 100%);
	--gradient-light-green: linear-gradient(90deg, #F9FAF5 0%, #B3FE66 100%);
	--gradient-blue: linear-gradient(90deg, #00142C 0%, #040516 100%);
	--font: 'Inter', system-ui, -apple-system, sans-serif;
	--type-scale: 1.25;
	--width: 800px;
	--width-wide: 1100px;
}

body {
	font-family: var(--font);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
	font-size: 1rem;
}

::selection { background: oklch(75.79% 0.246 142.67 / 0.4); color: #000; }

a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header {
	border-bottom: 1px solid var(--color-border);
	padding: 0 1.25rem;
	position: sticky;
	top: 0;
	background: var(--color-bg);
	z-index: 10;
}
.headerInner {
	max-width: var(--width-wide);
	margin: 0 auto;
	height: 56px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.5rem;
}
.logoGroup { display: flex; align-items: center; gap: 0.5rem; }
.logo { display: flex; align-items: center; }
.logo img { height: 22px; width: auto; display: block; }
.logo:hover { opacity: 0.8; text-decoration: none; }
.logoDocs {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-muted);
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 5px;
	padding: 2px 8px;
}
.logoDocs:hover { color: var(--color-text); text-decoration: none; }
.searchButton {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 6px;
	padding: 6px 12px;
	cursor: pointer;
	font-size: 0.8125rem;
	color: var(--color-muted);
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font);
	width: 100%;
	max-width: 480px;
}
.searchButton:hover { border-color: oklch(80% 0 0); color: var(--color-text); }
.headerActions { display: flex; align-items: center; gap: 1.25rem; }
button.headerActionLink { background: none; border: none; cursor: pointer; padding: 0; font-family: var(--font); }
.headerActionLink {
	font-size: 0.875rem;
	color: var(--color-text);
	font-weight: 500;
}
.headerActionLink:hover { text-decoration: none; color: var(--color-accent); }
.headerActionButton {
	font-size: 0.875rem;
	font-weight: 500;
	background: var(--color-text);
	color: var(--color-bg);
	padding: 7px 14px;
	border-radius: 6px;
}
.headerActionButton:hover { background: oklch(30% 0 0); text-decoration: none; color: var(--color-bg); }

.categoryNav {
	border-bottom: 1px solid var(--color-border);
	padding: 0 1.25rem;
	position: sticky;
	top: 56px;
	background: var(--color-bg);
	z-index: 9;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.categoryNav::-webkit-scrollbar { display: none; }
.categoryNavInner {
	max-width: var(--width-wide);
	margin: 0 auto;
	display: flex;
	gap: 0;
	white-space: nowrap;
}
.categoryNavInner a {
	display: inline-block;
	padding: 0.75rem 0.875rem;
	font-size: 0.875rem;
	color: var(--color-muted);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
}
.categoryNavInner a:hover { color: var(--color-text); text-decoration: none; }
.categoryNavInner a.active { color: var(--color-text); border-bottom-color: var(--color-text); font-weight: 500; }
kbd {
	font-family: var(--font);
	font-size: 0.75rem;
	background: var(--color-border);
	border-radius: 3px;
	padding: 1px 5px;
}

nav.breadcrumb {
	border-bottom: 1px solid var(--color-border);
	font-size: 0.8125rem;
	color: var(--color-muted);
}
.breadcrumbInner {
	max-width: var(--width);
	margin: 0 auto;
	padding: 0 1.25rem;
	height: 40px;
	display: flex;
	align-items: center;
	gap: 4px;
	overflow-x: auto;
	white-space: nowrap;
	scrollbar-width: none;
}
.breadcrumbInner::-webkit-scrollbar { display: none; }
.breadcrumbInner a { color: var(--color-muted); }
.breadcrumbInner a:hover { color: var(--color-text); text-decoration: none; }
.breadcrumbInner span + span::before { content: '/'; margin-right: 4px; color: var(--color-border); }

main {
	max-width: var(--width);
	margin: 0 auto;
	padding: 2.5rem 1.25rem;
}

.helpStrip {
	border-top: 1px solid var(--color-border);
	padding: 2rem 0;
}
.helpStripInner {
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 0 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}
.helpStripInner p { font-size: 0.9375rem; color: var(--color-muted); }
.helpStripInner a { color: var(--color-text); }
.helpStripInner a:hover { color: var(--color-accent); text-decoration: none; }
.helpStripInner strong { font-weight: 600; color: var(--color-brand); }

.siteFooter {
	background: oklch(9% 0.04 245);
	border-top: 1px solid oklch(14% 0.04 245);
}
.siteFooterInner {
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 3rem 1.25rem 2rem;
}
.siteFooterTop {
	display: flex;
	gap: 4rem;
	margin-bottom: 2.5rem;
}
.siteFooterLogo img { width: 120px; height: auto; display: block; }
.siteFooterNav {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
	flex: 1;
}
.siteFooterColumn h3 {
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: var(--color-core-green);
	margin-bottom: 1rem;
}
.siteFooterColumn ul { list-style: none; }
.siteFooterColumn li { margin-bottom: 0.625rem; }
.siteFooterColumn a { color: oklch(100% 0 0 / 0.75); font-size: 0.875rem; }
.siteFooterColumn a:hover { color: oklch(100% 0 0); text-decoration: none; }
.siteFooterBottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 1.5rem;
	border-top: 1px solid oklch(14% 0.04 245);
	gap: 1rem;
	flex-wrap: wrap;
}
.siteFooterBottom p { font-size: 0.75rem; color: oklch(100% 0 0 / 0.4); }
.siteFooterBadges { display: flex; gap: 0.5rem; }
.siteFooterBadge {
	font-size: 0.6875rem;
	color: oklch(100% 0 0 / 0.6);
	background: oklch(14% 0.04 245);
	border-radius: 6px;
	padding: 4px 10px;
	letter-spacing: -0.01em;
}
.siteFooterBadge:hover { color: oklch(100% 0 0); text-decoration: none; }
.siteFooterSocial { display: flex; gap: 0.75rem; align-items: center; }
.siteFooterSocial img { width: 18px; height: 18px; opacity: 0.6; display: block; }
.siteFooterSocial a:hover img { opacity: 1; }
@media (max-width: 768px) {
	.siteFooterTop { flex-direction: column; gap: 2rem; }
	.siteFooterNav { grid-template-columns: repeat(2, 1fr); }
	.siteFooterBottom { flex-direction: column; align-items: flex-start; }
}

main.wide {
	max-width: var(--width-wide);
}

.homepageHero {
	text-align: center;
	padding: 3.5rem 0 1.5rem;
	margin-bottom: 1.5rem;
}
.homepageHero h1 {
	font-size: clamp(2rem, 5vw, 2.75rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 0.5rem;
}
@keyframes charIn {
	to { opacity: 1; transform: translateY(0); }
}
.heroTitle .char {
	opacity: 0;
	transform: translateY(20px);
	display: inline-block;
	animation: charIn 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.homepageHero p {
	color: var(--color-muted);
	font-size: 1.0625rem;
}
.homepageSearchWrap {
	margin-top: 1.25rem;
	position: relative;
	width: 100%;
}
.homepageSearchButton {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	padding: 11px 16px;
	font-size: 0.9375rem;
	color: var(--color-muted);
	width: 100%;
	box-shadow: 0 1px 4px oklch(0% 0 0 / 0.06);
	transition: border-color 0.15s;
}
.homepageSearchButton:focus-within { border-color: oklch(75% 0 0); }
.homepageSearchButton svg { flex-shrink: 0; color: var(--color-muted); }
.homepageSearchButton input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-size: 0.9375rem;
	font-family: var(--font);
	color: var(--color-text);
	cursor: text;
}
.homepageSearchButton input::placeholder { color: var(--color-muted); }
.homepageSearchButton kbd {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 5px;
	padding: 2px 7px;
	font-size: 0.75rem;
	font-family: var(--font);
	color: var(--color-muted);
	flex-shrink: 0;
}
.homepageSearchResults {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	box-shadow: 0 4px 20px oklch(0% 0 0 / 0.10);
	overflow: hidden;
	z-index: 20;
}
.homepageSearchResults.open { display: block; }
.homepageSearchResults ul { list-style: none; }
.homepageSearchResults li a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--color-text);
	font-size: 0.9375rem;
	border-bottom: 1px solid var(--color-border);
	text-decoration: none;
	text-align: left;
}
.homepageSearchResults li:last-child a { border-bottom: none; }
.homepageSearchResults li a:hover { background: var(--color-surface); color: var(--color-accent); }
.homepageSearchResults .searchEmpty { padding: 1.25rem 1rem; text-align: center; color: var(--color-muted); font-size: 0.9375rem; }

.featuredBanner {
	display: block;
	background: oklch(14% 0.04 145) url('/banner.png') center / cover no-repeat;
	border-radius: 16px;
	margin-bottom: 3rem;
	padding: 1.5rem 2rem;
	text-decoration: none;
	overflow: hidden;
	min-height: 220px;
}
.featuredBanner:hover { opacity: 0.93; text-decoration: none; }
.featuredBannerContent { max-width: 520px; display: flex; flex-direction: column; align-items: flex-start; justify-content: space-between; min-height: 220px; }
.featuredBannerTitle {
	font-size: clamp(1.375rem, 3vw, 2rem);
	font-weight: 700;
	color: oklch(100% 0 0);
	letter-spacing: -0.02em;
	line-height: 1.2;
}
.featuredBannerCta {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: oklch(14% 0 0);
	background: oklch(100% 0 0);
	padding: 6px 14px;
	border-radius: 999px;
}

.homepageDocsGrid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem 3rem;
}
.homepageDocsGrid > * { min-width: 0; }
@media (min-width: 600px) { .homepageDocsGrid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .homepageDocsGrid { grid-template-columns: repeat(3, 1fr); } }

.homepageCategory h2 {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	color: var(--color-muted);
	margin-bottom: 0.75rem;
	padding-bottom: 0.625rem;
	border-bottom: 1px solid var(--color-border);
}
.homepageCategory h2 a { color: inherit; }
.homepageCategory h2 a:hover { color: var(--color-accent); text-decoration: none; }
.homepageCategoryList { list-style: none; }
.homepageCategoryList li { margin-bottom: 0.5rem; overflow: hidden; }
.homepageCategoryList a {
	color: var(--color-text);
	font-size: 0.875rem;
	line-height: 1.4;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
}
.homepageCategoryList a:hover { color: var(--color-accent); text-decoration: none; }
.homepageCategorySeeAll { display: inline-block; margin-top: 0.75rem; font-size: 0.8125rem; }

.articleList { list-style: none; }
.articleList li { border-bottom: 1px solid var(--color-border); }
.articleList li:last-child { border-bottom: none; }
.articleList a {
	display: block;
	padding: 0.625rem 0;
	color: var(--color-text);
	font-size: 0.9375rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.articleList a:hover { color: var(--color-accent); text-decoration: none; }

.categoryLayout {
	display: grid;
	grid-template-columns: 220px 1fr;
	gap: 3rem;
	align-items: start;
}
@media (max-width: 768px) { .categoryLayout { grid-template-columns: 1fr; } }

.categorySidebar {
	position: sticky;
	top: 1.5rem;
}
.sidebarNav { display: flex; flex-direction: column; }
.sidebarToggle { display: none; }
.sidebarItem { }
.sidebarCategoryRow {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.sidebarCategoryRow:has(+ .sidebarSublist):hover { background: var(--color-surface); }
.sidebarCategoryLink {
	flex: 1;
	display: block;
	padding: 0.625rem 0.5rem;
	font-size: 0.875rem;
	color: var(--color-text);
}
.sidebarCategoryLink:hover { text-decoration: none; }
.sidebarCategoryLink--active { font-weight: 600; }
.sidebarArrow {
	padding: 0.625rem 0.5rem;
	font-size: 0.875rem;
	color: var(--color-muted);
	cursor: pointer;
	display: inline-block;
	transition: transform 0.15s;
	line-height: 1;
	user-select: none;
}
.sidebarToggle:checked ~ .sidebarCategoryRow .sidebarArrow { transform: rotate(90deg); }
.sidebarSublist {
	display: none;
	list-style: none;
	margin: 0 0 0.5rem 0.5rem;
	border-left: 2px solid var(--color-border);
	padding-left: 0.75rem;
}
.sidebarToggle:checked ~ .sidebarSublist { display: block; }
.sidebarSubcategory {
	font-size: 0.8125rem;
	color: var(--color-muted);
	padding: 0.3rem 0;
	display: block;
}
.sidebarSubcategory:hover { color: var(--color-text); text-decoration: none; }
@media (max-width: 768px) { .categorySidebar { display: none; } }

.categoryContent { min-width: 0; }
.categoryHeader { margin-bottom: 2rem; }
.categoryHeader h1 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; }

.subcategoryPills { display: none; }

.subcategorySection {
	padding-bottom: 2rem;
	margin-bottom: 2rem;
	border-bottom: 1px solid var(--color-border);
}
.subcategorySection:last-child { border-bottom: none; }
.subcategorySection h2 {
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.01em;
	margin-bottom: 1rem;
}
.categoryArticleList { list-style: none; }
.categoryArticleList li { margin-bottom: 0.5rem; }
.categoryArticleList a { font-size: 0.9375rem; color: var(--color-text); }
.categoryArticleList a:hover { color: var(--color-accent); text-decoration: none; }

article {
	--article-spacing-default: 1rem;
	margin: 0;
	font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
	-webkit-font-smoothing: antialiased;
	word-break: break-word;
	hyphenate-limit-chars: 7;
	hyphens: auto;
}
.articleHeader { margin-bottom: calc(var(--article-spacing-default) * 2); }
article h1, article h2, article h3, article h4 { font-weight: 600; line-height: 1.3; margin-bottom: 0.5rem; }
article h1 {
	font-size: calc(1rem * var(--type-scale) * var(--type-scale) * var(--type-scale));
	font-weight: 700;
	letter-spacing: -0.04em;
}
.articleHeader .subtitle { font-size: 1rem; color: var(--color-muted); margin-top: 0.5rem; line-height: 1.5; }

.articleBody { line-height: 1.75; }
article h2 {
	font-size: calc(1rem * var(--type-scale) * var(--type-scale));
	letter-spacing: -0.02em;
}
article h3 { font-size: calc(1rem * var(--type-scale)); }
article h4 { font-size: 1rem; color: var(--color-muted); }
article * + h1 { margin-top: calc(var(--article-spacing-default) * 2); }
article * + h2 { margin-top: var(--article-spacing-default); }
article * + h3, article * + h4 { margin-top: calc(var(--article-spacing-default) * 0.5); }
.articleBody p { margin-bottom: 1rem; }
.articleBody ul, .articleBody ol { margin: 0 0 1rem 1.375rem; }
.articleBody li { margin-bottom: 0.25rem; }
.articleBody li > p { margin-bottom: 0.25rem; }
.articleBody strong { font-weight: 600; }
.articleBody em { font-style: italic; }
.articleBody code {
	font-family: ui-monospace, 'Cascadia Code', monospace;
	font-size: 0.8125em;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	padding: 1px 5px;
	border-radius: 4px;
}
.articleBody pre {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 8px;
	padding: 1rem 1.125rem;
	overflow-x: auto;
	margin-bottom: 1rem;
	font-size: 0.875rem;
}
.articleBody pre code { background: none; border: none; padding: 0; font-size: inherit; }
.articleBody blockquote {
	border-left: 3px solid var(--color-border);
	padding-left: 1rem;
	color: var(--color-muted);
	margin-bottom: 1rem;
}
.articleBody img { max-width: 100%; border-radius: 8px; height: auto; }
.articleBody figure { margin-bottom: 1.25rem; }
.articleBody figcaption { font-size: 0.8125rem; color: var(--color-muted); margin-top: 0.375rem; }
.articleBody table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; font-size: 0.875rem; }
.articleBody th, .articleBody td { border: 1px solid var(--color-border); padding: 8px 12px; text-align: left; }
.articleBody th { background: var(--color-surface); font-weight: 600; }
.articleBody hr { border: none; border-top: 1px solid var(--color-border); margin: 1.5rem 0; }

.contactHeader { margin-bottom: 2rem; }
.contactHeader h1 { font-size: 1.75rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.375rem; }
.contactHeader p { color: var(--color-muted); font-size: 0.9375rem; }

.contactForm { display: flex; flex-direction: column; gap: 1.25rem; }
.formRow { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
@media (max-width: 640px) { .formRow { grid-template-columns: 1fr; } }

.formField { display: flex; flex-direction: column; gap: 0.375rem; }
.formField label { font-size: 0.875rem; font-weight: 500; color: var(--color-text); }
.formRequired { color: var(--color-muted); font-weight: 400; }
.formField input[type="text"],
.formField input[type="email"],
.formField input[type="url"],
.formField textarea {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--color-border);
	border-radius: 6px;
	font-size: 0.9375rem;
	font-family: var(--font);
	color: var(--color-text);
	background: var(--color-bg);
	outline: none;
	transition: border-color 0.15s;
}
.formField input:focus,
.formField textarea:focus { border-color: oklch(70% 0 0); }
.formField textarea { resize: vertical; line-height: 1.6; }
.formField input[type="file"] {
	font-size: 0.875rem;
	color: var(--color-muted);
	cursor: pointer;
}
.fileStatus { font-size: 0.8125rem; margin-top: 0.375rem; display: block; }
.fileStatus--loading { color: var(--color-muted); }
.fileStatus--success { color: var(--color-core-green); }
.fileStatus--error { color: oklch(50% 0.2 25); }

.formSubmit {
	align-self: flex-start;
	background: var(--color-text);
	color: var(--color-bg);
	border: none;
	border-radius: 6px;
	padding: 10px 20px;
	font-size: 0.9375rem;
	font-weight: 500;
	font-family: var(--font);
	cursor: pointer;
}
.formSubmit:hover { background: oklch(30% 0 0); }

.articleFooter {
	margin-top: 3rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
	font-size: 0.875rem;
	color: var(--color-muted);
}

.searchOverlay {
	display: none;
	position: fixed;
	inset: 0;
	background: oklch(0% 0 0 / 0.45);
	z-index: 100;
	align-items: flex-start;
	justify-content: center;
	padding-top: 12vh;
}
.searchOverlay.open { display: flex; }
.searchModal {
	background: var(--color-bg);
	border: 1px solid var(--color-border);
	border-radius: 12px;
	width: 100%;
	max-width: 540px;
	margin: 0 1rem;
	overflow: hidden;
	box-shadow: 0 8px 40px oklch(0% 0 0 / 0.12);
}
.searchModalInput {
	width: 100%;
	padding: 14px 16px;
	border: none;
	border-bottom: 1px solid var(--color-border);
	font-size: 1rem;
	outline: none;
	font-family: var(--font);
	background: var(--color-bg);
}
.searchModalResults { max-height: 380px; overflow-y: auto; }
.searchModalResults ul { list-style: none; }
.searchModalResults li a {
	display: block;
	padding: 11px 16px;
	color: var(--color-text);
	border-bottom: 1px solid var(--color-border);
	font-size: 0.9375rem;
}
.searchModalResults li:last-child a { border-bottom: none; }
.searchModalResults li a:hover { background: var(--color-surface); text-decoration: none; color: var(--color-accent); }
.searchModalEmpty { padding: 2rem 1rem; text-align: center; color: var(--color-muted); font-size: 0.9375rem; }

@media (max-width: 640px) {
	header { position: relative; padding: 0 1rem; }
	.categoryNav { position: relative; top: auto; }
	.headerInner { grid-template-columns: auto 1fr; gap: 0.75rem; }
	.searchButton { display: none; }
	.headerActions { gap: 0.5rem; margin-left: auto; }
	.headerActionLink { display: none; }
	.headerActionButton { padding: 6px 12px; font-size: 0.8125rem; }
	.categoryNavInner a { padding: 0.625rem 0.625rem; font-size: 0.8125rem; }
	main { padding: 1.5rem 1rem; }
	.subcategoryPills {
		display: flex;
		gap: 0.5rem;
		overflow-x: auto;
		scrollbar-width: none;
		padding-bottom: 1.25rem;
		margin-bottom: 0.75rem;
	}
	.subcategoryPills::-webkit-scrollbar { display: none; }
	.subcategoryPill {
		flex-shrink: 0;
		padding: 6px 14px;
		border: 1px solid var(--color-border);
		border-radius: 999px;
		font-size: 0.8125rem;
		color: var(--color-text);
		white-space: nowrap;
	}
	.subcategoryPill:hover { border-color: var(--color-text); text-decoration: none; }
	.homepageHero { padding: 2.5rem 0 1.5rem; }
	.homepageSearchButton input { font-size: 16px; }
	.homepageDocsGrid { gap: 2rem; }
	.siteFooterTop { flex-direction: column; gap: 2rem; }
	.siteFooterNav { grid-template-columns: repeat(2, 1fr); }
	.siteFooterBottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

iframe[src*="hubspotvideo.com"] {
	width: 100%;
	aspect-ratio: 14 / 9;
	border: none;
	border-radius: 15px;
}

[class^="hs-callout"], .hs-callout-type-note {
	padding: 1em;
	background: #f1f1f1;
	border-left: solid 4px black;
	> :last-child {
		margin-bottom: 0;
	}
}
