:root {
	color-scheme: dark;
	--bg: #070a0f;
	--bg-radial: radial-gradient(circle at 20% 0%, #172033 0%, transparent 38%);
	--surface: rgba(17, 24, 39, 0.84);
	--surface-solid: #0b1220;
	--surface-2: #111827;
	--border: #283244;
	--border-soft: #1c2434;
	--text: #e5e7eb;
	--muted: #94a3b8;
	--muted-2: #64748b;
	--primary: #7c3aed;
	--primary-strong: #8b5cf6;
	--accent: #22d3ee;
	--gradient: linear-gradient(135deg, #8b5cf6, #22d3ee);
	--radius-lg: 20px;
	--radius-md: 14px;
	--radius-sm: 10px;
	--shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 18px 60px rgba(0, 0, 0, 0.28);
	--container: 1180px;
	--font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

* {
	scrollbar-width: thin;
	scrollbar-color: #56647a #0b1220;
}
*::-webkit-scrollbar {
	width: 11px;
	height: 11px;
}
*::-webkit-scrollbar-track {
	background: #0b1220;
}
*::-webkit-scrollbar-thumb {
	background: linear-gradient(180deg, #64748b, #3f4c63);
	border: 3px solid #0b1220;
	border-radius: 999px;
}
*::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(180deg, #8b9ab0, #56647a);
}

html {
	min-height: 100%;
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100svh;
	background: var(--bg-radial), var(--bg);
	color: var(--text);
	font-family: var(--font-sans);
	line-height: 1.55;
	-webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	* {
		animation-duration: 0.001ms !important;
		transition-duration: 0.001ms !important;
	}
}

a {
	color: inherit;
}

img {
	max-width: 100%;
	display: block;
}

h1,
h2,
h3,
h4,
p {
	margin-top: 0;
}

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

.skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	z-index: 200;
	background: var(--primary);
	color: #fff;
	padding: 12px 18px;
	border-radius: var(--radius-sm);
	font-weight: 700;
}
.skip-link:focus {
	left: 16px;
	top: 16px;
}

:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
	border-radius: 4px;
}

/* layout */

.shell {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}

.section {
	padding: 88px 0;
}
.section-tight {
	padding: 56px 0;
}
.section-border-top {
	border-top: 1px solid var(--border-soft);
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: 14px;
}
.eyebrow::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--gradient);
	flex: none;
}

.section-head {
	max-width: 640px;
	margin: 0 0 44px;
}
.section-head.center {
	max-width: 720px;
	margin-inline: auto;
	text-align: center;
}
.section-head h2 {
	font-size: clamp(28px, 3.4vw, 38px);
	letter-spacing: -0.02em;
	margin-bottom: 12px;
}
.section-head p {
	color: var(--muted);
	font-size: 17px;
}

.grid {
	display: grid;
	gap: 20px;
}
.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 900px) {
	.grid-3,
	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 620px) {
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: 1fr;
	}
}

.row {
	display: flex;
	align-items: center;
	gap: 12px;
}
.wrap {
	flex-wrap: wrap;
}
.between {
	justify-content: space-between;
}
.center {
	justify-content: center;
	text-align: center;
}
.muted {
	color: var(--muted);
}

/* brand / nav */

.mark {
	width: 34px;
	height: 34px;
	flex: none;
	background: url("/assets/favicon.svg") center / contain no-repeat;
	border-radius: 9px;
}
.mark-lg {
	width: 56px;
	height: 56px;
}
.brand {
	display: inline-flex;
	align-items: center;
	gap: 11px;
	font-weight: 800;
	font-size: 19px;
	text-decoration: none;
	color: var(--text);
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(7, 10, 15, 0.78);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--border-soft);
}
.site-header .shell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 72px;
	gap: 24px;
}
.nav-links {
	display: flex;
	align-items: center;
	gap: 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav-links a {
	text-decoration: none;
	color: var(--muted);
	font-size: 14.5px;
	font-weight: 600;
	transition: color 0.15s ease;
}
.nav-links a:hover,
.nav-links a.active {
	color: var(--text);
}
.nav-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}
.nav-primary-links {
	display: flex;
	align-items: center;
	gap: 24px;
}

.nav-toggle {
	display: none;
	appearance: none;
	background: var(--surface-2);
	border: 1px solid var(--border);
	color: var(--text);
	border-radius: var(--radius-sm);
	width: 42px;
	height: 42px;
	place-items: center;
	cursor: pointer;
}

@media (max-width: 880px) {
	.nav-toggle {
		display: grid;
	}
	.nav-primary-links {
		position: fixed;
		inset: 72px 0 auto 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		background: #0a0e16;
		border-bottom: 1px solid var(--border-soft);
		padding: 10px 24px 20px;
		transform: translateY(-8px);
		opacity: 0;
		pointer-events: none;
		transition:
			opacity 0.16s ease,
			transform 0.16s ease;
	}
	.nav-primary-links.open {
		transform: translateY(0);
		opacity: 1;
		pointer-events: auto;
	}
	.nav-links {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
		width: 100%;
	}
	.nav-links a {
		display: block;
		width: 100%;
		padding: 12px 4px;
		border-bottom: 1px solid var(--border-soft);
	}
	.nav-primary-links .nav-actions {
		display: flex;
		width: 100%;
		margin-top: 14px;
	}
	.nav-primary-links .nav-actions .button {
		flex: 1;
		text-align: center;
	}
}

/* buttons */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 0;
	border-radius: var(--radius-sm);
	padding: 12px 20px;
	font-weight: 700;
	font-size: 14.5px;
	font-family: inherit;
	cursor: pointer;
	background: var(--primary);
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	transition:
		filter 0.15s ease,
		transform 0.15s ease;
}
.button:hover {
	filter: brightness(1.12);
}
.button:active {
	transform: translateY(1px);
}
.button.secondary {
	background: var(--surface-2);
	border: 1px solid var(--border);
	color: var(--text);
}
.button.ghost {
	background: transparent;
	border: 1px solid var(--border);
	color: var(--text);
}
.button.gradient {
	background: var(--gradient);
	color: #0b1020;
}
.button.lg {
	padding: 14px 26px;
	font-size: 15.5px;
}
.button svg {
	width: 18px;
	height: 18px;
	flex: none;
}

/* badges */

.badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 11px;
	border-radius: 999px;
	background: #1f2937;
	border: 1px solid #374151;
	font-size: 12px;
	font-weight: 600;
	color: var(--text);
}
.badge.ok {
	background: #052e26;
	border-color: #0f766e;
	color: #99f6e4;
}
.badge.info {
	background: #0c2945;
	border-color: #0369a1;
	color: #bae6fd;
}
.badge.warn {
	background: #3a2508;
	border-color: #b45309;
	color: #fde68a;
}
.badge.accent {
	background: rgba(139, 92, 246, 0.12);
	border-color: rgba(139, 92, 246, 0.4);
	color: #d8c5fb;
}

/* cards */

.card {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}
.pad {
	padding: 28px;
}
.pad-lg {
	padding: 40px;
}

.feature-card {
	padding: 26px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	transition:
		border-color 0.18s ease,
		transform 0.18s ease;
}
.feature-card:hover {
	border-color: rgba(139, 92, 246, 0.45);
	transform: translateY(-2px);
}
.feature-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	display: grid;
	place-items: center;
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.14));
	border: 1px solid rgba(139, 92, 246, 0.3);
	margin-bottom: 16px;
	flex: none;
}
.feature-icon svg {
	width: 22px;
	height: 22px;
	stroke: var(--accent);
}
.feature-card h3 {
	font-size: 16.5px;
	margin-bottom: 8px;
}
.feature-card p {
	color: var(--muted);
	font-size: 14.5px;
	margin: 0;
}
.feature-card ul {
	margin: 10px 0 0;
	padding-left: 18px;
	color: var(--muted);
	font-size: 13.5px;
	display: grid;
	gap: 4px;
}

.value-card {
	padding: 30px 26px;
	text-align: left;
}
.value-card .feature-icon {
	margin-bottom: 20px;
}
.value-card h3 {
	font-size: 19px;
	margin-bottom: 10px;
}
.value-card p {
	color: var(--muted);
	margin: 0;
	font-size: 15px;
}

/* hero */

.hero {
	padding: 78px 0 40px;
	position: relative;
	overflow: hidden;
}
.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 20px;
	align-items: center;
	text-align: center;
}
.hero-copy {
	max-width: 780px;
	margin: 0 auto;
}
.hero h1 {
	font-size: clamp(34px, 5.4vw, 60px);
	line-height: 1.08;
	letter-spacing: -0.03em;
	margin-bottom: 22px;
}
.hero h1 .grad {
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}
.hero p.lead {
	font-size: 18px;
	color: var(--muted);
	max-width: 660px;
	margin: 0 auto 32px;
}
.hero-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	flex-wrap: wrap;
	margin-bottom: 30px;
}
.hero-badges {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* browser-chrome screenshot frame */
.browser-frame {
	margin-top: 56px;
	border-radius: var(--radius-lg);
	border: 1px solid var(--border);
	background: var(--surface-solid);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.browser-frame-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-soft);
	background: #0d1420;
}
.browser-frame-dot {
	width: 11px;
	height: 11px;
	border-radius: 999px;
	background: #374151;
}
.browser-frame-dot:nth-child(1) {
	background: #f87171;
}
.browser-frame-dot:nth-child(2) {
	background: #fbbf24;
}
.browser-frame-dot:nth-child(3) {
	background: #34d399;
}
.browser-frame-url {
	margin-left: 10px;
	font-size: 12px;
	color: var(--muted-2);
	background: #0b1220;
	border: 1px solid var(--border-soft);
	border-radius: 999px;
	padding: 5px 14px;
	font-family: var(--font-mono);
}
.browser-frame-body {
	background: #0b1220;
	aspect-ratio: 16 / 9.6;
	display: block;
	position: relative;
}
.browser-frame-body img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
	position: relative;
	z-index: 2;
}
.shot-placeholder {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	gap: 10px;
	color: var(--muted-2);
	text-align: center;
	padding: 24px;
	background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 14px), #0b1220;
}
.shot-placeholder svg {
	width: 40px;
	height: 40px;
	stroke: var(--muted-2);
}
.shot-placeholder strong {
	color: var(--muted);
	font-size: 14px;
}
.shot-placeholder span {
	font-size: 12.5px;
	max-width: 320px;
	font-family: var(--font-mono);
}

/* logo / tech strip */

.tech-strip {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 12px;
}
.tech-pill {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 10px 16px;
	border-radius: 999px;
	border: 1px solid var(--border);
	background: var(--surface-2);
	font-size: 13.5px;
	font-weight: 600;
	color: var(--muted);
}
.tech-pill svg {
	width: 16px;
	height: 16px;
	stroke: var(--accent);
}

/* code blocks */

.code-block {
	position: relative;
	background: #0b1220;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
}
.code-block-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 16px;
	border-bottom: 1px solid var(--border-soft);
	font-size: 12px;
	color: var(--muted-2);
	font-family: var(--font-mono);
}
.code-copy {
	appearance: none;
	background: var(--surface-2);
	border: 1px solid var(--border);
	color: var(--muted);
	border-radius: 8px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: var(--font-sans);
}
.code-copy:hover {
	color: var(--text);
	border-color: #3f4c63;
}
.code-copy svg {
	width: 13px;
	height: 13px;
}
.code-block pre {
	margin: 0;
	padding: 18px 20px;
	overflow-x: auto;
	font-size: 13.5px;
	line-height: 1.6;
	color: #cbd5e1;
}
.code-block code {
	color: #cbd5e1;
}
.tok-c {
	color: #64748b;
}
.tok-s {
	color: #99f6e4;
}
.tok-k {
	color: #d8c5fb;
}

.steps {
	display: grid;
	gap: 16px;
}
.step {
	display: grid;
	grid-template-columns: 40px 1fr;
	gap: 16px;
}
.step-num {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: var(--gradient);
	color: #0b1020;
	font-weight: 800;
	display: grid;
	place-items: center;
	flex: none;
}
.step h3 {
	font-size: 16px;
	margin-bottom: 6px;
}
.step p {
	color: var(--muted);
	margin: 0 0 10px;
	font-size: 14.5px;
}

/* screenshots gallery */

.shot-card {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--surface);
	overflow: hidden;
	cursor: zoom-in;
	display: block;
	text-align: left;
	width: 100%;
	padding: 0;
	color: inherit;
	font: inherit;
}
.shot-card .shot-media {
	aspect-ratio: 16 / 10;
	background: #0b1220;
	position: relative;
	overflow: hidden;
}
.shot-card.tall .shot-media {
	aspect-ratio: 16 / 11;
}
.shot-card .shot-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	position: relative;
	z-index: 2;
}
.shot-card .shot-meta {
	padding: 16px 18px 18px;
	border-top: 1px solid var(--border-soft);
}
.shot-card .shot-meta h3 {
	font-size: 14.5px;
	margin-bottom: 4px;
}
.shot-card .shot-meta p {
	font-size: 13px;
	color: var(--muted);
	margin: 0;
}
.shot-tag {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 3;
}
.shot-expand {
	position: absolute;
	bottom: 12px;
	right: 12px;
	z-index: 3;
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: rgba(11, 18, 32, 0.85);
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
}
.shot-expand svg {
	width: 16px;
	height: 16px;
	stroke: var(--text);
}

.filter-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 32px;
}
.filter-chip {
	appearance: none;
	border: 1px solid var(--border);
	background: var(--surface-2);
	color: var(--muted);
	padding: 8px 15px;
	border-radius: 999px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}
.filter-chip.active {
	background: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* lightbox */
.lightbox {
	position: fixed;
	inset: 0;
	z-index: 100;
	background: rgba(4, 7, 12, 0.86);
	backdrop-filter: blur(4px);
	display: none;
	padding: 5vh 20px;
	overflow: auto;
}
.lightbox.open {
	display: block;
}
.lightbox-inner {
	max-width: 1100px;
	margin: 0 auto;
}
.lightbox-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 14px;
	color: var(--text);
	position: sticky;
	top: 0;
}
.lightbox-head h3 {
	font-size: 15px;
	margin: 0;
}
.lightbox-head p {
	margin: 2px 0 0;
	font-size: 13px;
	color: var(--muted-2);
}
.lightbox-close {
	appearance: none;
	background: var(--surface-2);
	border: 1px solid var(--border);
	color: var(--text);
	width: 40px;
	height: 40px;
	border-radius: 10px;
	cursor: pointer;
	display: grid;
	place-items: center;
	flex: none;
}
.lightbox-close svg {
	width: 18px;
	height: 18px;
}
.lightbox-media {
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	overflow: hidden;
	background: #0b1220;
}
.lightbox-media img {
	width: 100%;
	height: auto;
	display: block;
}
.lightbox-hint {
	text-align: center;
	color: var(--muted-2);
	font-size: 12.5px;
	margin-top: 14px;
}

/* docs page */

.doc-card {
	padding: 22px;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	background: var(--surface);
	text-decoration: none;
	display: block;
	transition: border-color 0.15s ease;
}
.doc-card:hover {
	border-color: rgba(139, 92, 246, 0.45);
}
.doc-card .row {
	justify-content: space-between;
	margin-bottom: 8px;
}
.doc-card h3 {
	font-size: 15.5px;
	margin: 0;
}
.doc-card p {
	color: var(--muted);
	font-size: 13.5px;
	margin: 0;
}
.doc-card svg.arrow {
	width: 16px;
	height: 16px;
	stroke: var(--muted-2);
	flex: none;
}

.config-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
}
table.config-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13.5px;
	min-width: 640px;
}
table.config-table th,
table.config-table td {
	text-align: left;
	padding: 12px 16px;
	border-bottom: 1px solid var(--border-soft);
	vertical-align: top;
}
table.config-table th {
	color: var(--muted-2);
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	background: var(--surface-2);
}
table.config-table tr:last-child td {
	border-bottom: 0;
}
table.config-table code {
	font-size: 12.5px;
	color: #99f6e4;
}
table.config-table td.default code {
	color: #bae6fd;
}

/* CTA band */

.cta-band {
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(34, 211, 238, 0.08)), var(--surface);
	padding: 56px;
	text-align: center;
}
.cta-band h2 {
	font-size: clamp(24px, 3vw, 32px);
	margin-bottom: 12px;
}
.cta-band p {
	color: var(--muted);
	max-width: 560px;
	margin: 0 auto 28px;
	font-size: 16px;
}

/* footer */

.site-footer {
	border-top: 1px solid var(--border-soft);
	padding: 60px 0 34px;
}
.footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(3, 1fr);
	gap: 32px;
	margin-bottom: 40px;
}
@media (max-width: 780px) {
	.footer-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 480px) {
	.footer-grid {
		grid-template-columns: 1fr;
	}
}
.footer-brand p {
	color: var(--muted);
	font-size: 14px;
	margin: 14px 0 18px;
	max-width: 280px;
}
.footer-col h4 {
	font-size: 12.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--muted-2);
	margin-bottom: 14px;
}
.footer-col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 10px;
}
.footer-col a {
	text-decoration: none;
	color: var(--muted);
	font-size: 14px;
}
.footer-col a:hover {
	color: var(--text);
}
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
	padding-top: 24px;
	border-top: 1px solid var(--border-soft);
	color: var(--muted-2);
	font-size: 13px;
}
.footer-social {
	display: flex;
	gap: 10px;
}
.footer-social a {
	width: 36px;
	height: 36px;
	border-radius: 9px;
	border: 1px solid var(--border);
	display: grid;
	place-items: center;
	color: var(--muted);
	text-decoration: none;
}
.footer-social a:hover {
	color: var(--text);
	border-color: #3f4c63;
}
.footer-social svg {
	width: 17px;
	height: 17px;
}

/* 404 */

.error-page {
	min-height: 70vh;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 60px 24px;
}
.error-page .code {
	font-size: clamp(64px, 12vw, 130px);
	font-weight: 800;
	line-height: 1;
	background: var(--gradient);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 12px;
}
.error-page h1 {
	font-size: 22px;
	margin-bottom: 10px;
}
.error-page p {
	color: var(--muted);
	max-width: 420px;
	margin: 0 auto 26px;
}

/* page hero (secondary pages) */

.page-hero {
	padding: 64px 0 20px;
	text-align: center;
}
.page-hero h1 {
	font-size: clamp(30px, 4.4vw, 46px);
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.page-hero p {
	color: var(--muted);
	max-width: 640px;
	margin: 0 auto;
	font-size: 17px;
}

@media (max-width: 640px) {
	.section {
		padding: 60px 0;
	}
	.cta-band {
		padding: 36px 24px;
	}
}

.link-accent {
	color: var(--accent);
	text-decoration: none;
}
.text-sm {
	font-size: 13.5px;
}
.mt-24 {
	margin: 24px 0 0;
}
.mt-36 {
	margin-top: 36px;
}
.mb-32 {
	margin-bottom: 32px;
}
.gap-16 {
	gap: 16px;
}
.tech-strip-label {
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}
.quickstart-grid {
	align-items: center;
	gap: 56px;
}
.quickstart-title {
	font-size: clamp(26px, 3.2vw, 34px);
	letter-spacing: -0.02em;
	margin-bottom: 16px;
}
.quick-install-head {
	margin-bottom: 20px;
	gap: 16px;
}
.quick-install-title {
	font-size: 20px;
	margin-bottom: 6px;
}
.quick-install-sub {
	margin: 0;
	font-size: 14.5px;
}
