:root {
	color-scheme: dark;
	--bg: #050506;
	--panel: #121318;
	--elevated: #181a20;
	--text: #f4f4f5;
	--muted: #a1a1aa;
	--accent: #ff7a00;
	--border: #27272a;
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	min-width: 320px;
	background: var(--bg);
	color: var(--text);
	font-family:
		Inter,
		ui-sans-serif,
		system-ui,
		-apple-system,
		'Segoe UI',
		sans-serif;
}
a {
	color: inherit;
	text-decoration: none;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 76px;
	display: flex;
	align-items: center;
	gap: 38px;
	padding-inline: max(24px, calc((100% - 1240px) / 2 + 24px));
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	background: rgba(5, 5, 6, 0.82);
	backdrop-filter: blur(18px);
}
.brand {
	display: inline-flex;
	align-items: center;
}
.brand img {
	display: block;
	width: auto;
	height: 34px;
	object-fit: contain;
}
nav {
	display: flex;
	gap: 28px;
	margin: 0 auto;
	color: #b7b7bd;
	font-size: 14px;
}
nav a:hover {
	color: #fff;
}
.button {
	min-height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 22px;
	border: 1px solid var(--accent);
	border-radius: 8px;
	background: var(--accent);
	color: #140a01;
	font-size: 14px;
	font-weight: 750;
	box-shadow: 0 10px 35px rgba(255, 122, 0, 0.16);
	transition:
		transform 0.2s,
		background 0.2s;
}
.button:hover {
	transform: translateY(-2px);
	background: #ff8a1f;
}
.button-arrow {
	width: 21px;
	height: 21px;
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	transition: transform 0.2s ease;
}
.button-arrow svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 2.25;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.button:hover .button-arrow {
	transform: translateX(3px);
}
.button-small {
	min-height: 40px;
	padding: 0 18px;
}
.button-secondary {
	border-color: var(--border);
	background: rgba(255, 255, 255, 0.025);
	color: var(--text);
	box-shadow: none;
}
.button-secondary:hover {
	background: rgba(255, 255, 255, 0.065);
}
.section-shell {
	width: min(1240px, calc(100% - 48px));
	margin: 0 auto;
}
.hero-band {
	position: relative;
	isolation: isolate;
}
.hero {
	position: relative;
	min-height: 820px;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: 58px;
	align-items: center;
	padding-block: 58px 74px;
}
.hero-band::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 22px;
	color: #c7c7cc;
	font-size: 12px;
	font-weight: 650;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.eyebrow span {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 14px var(--accent);
}
h1 {
	max-width: 660px;
	margin: 0;
	font-size: clamp(45px, 5.2vw, 72px);
	line-height: 0.98;
	letter-spacing: -0.055em;
	font-weight: 710;
}
h1 em {
	color: var(--accent);
	font-style: normal;
}
.hero-lead {
	max-width: 600px;
	margin: 27px 0 31px;
	color: var(--muted);
	font-size: 18px;
	line-height: 1.65;
}
.hero-actions {
	display: flex;
	gap: 12px;
}
.trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 13px 22px;
	margin-top: 33px;
	color: #acacb4;
	font-size: 12px;
}
.hero-visual {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 0;
}
.hero-visual::before {
	content: '';
	position: absolute;
	inset: 8% 3%;
	z-index: -1;
	background: rgba(255, 122, 0, 0.2);
	filter: blur(90px);
}
.tablet-shot {
	width: min(100%, 460px);
	display: grid;
	place-items: center;
	padding: 8px;
	border: 1px solid #35363c;
	border-radius: 18px;
	background: linear-gradient(145deg, #1a1b20, #090a0d);
	box-shadow:
		0 35px 90px rgba(0, 0, 0, 0.58),
		0 0 0 7px rgba(255, 255, 255, 0.018);
	transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.tablet-shot img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	border-radius: 11px;
}
.product-layout {
	min-height: 432px;
	display: grid;
	grid-template-columns: 168px 1fr;
}
.machine-list {
	padding: 21px 12px;
	border-right: 1px solid #24252a;
	background: #101116;
}
.machine-list small {
	display: block;
	padding: 0 8px 11px;
	color: #676770;
	font-size: 8px;
	font-weight: 700;
	letter-spacing: 0.09em;
}
.machine {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 6px;
	padding: 11px;
	border: 1px solid transparent;
	border-radius: 7px;
	color: #83838c;
	font-size: 9px;
}
.machine b {
	color: #c4c4ca;
	font-size: 11px;
}
.machine.active {
	border-color: rgba(255, 122, 0, 0.27);
	background: rgba(255, 122, 0, 0.08);
}
.machine.active b {
	color: #fff;
}
.source-count {
	margin: 150px 8px 0;
	color: #aaaab1;
	font-size: 9px;
	line-height: 1.7;
}
.source-count span {
	color: #5f966c;
}
.chat-panel {
	padding: 19px 22px;
	background: radial-gradient(circle at 100% 0, rgba(255, 122, 0, 0.04), transparent 40%);
}
.chat-context {
	display: flex;
	align-items: center;
	gap: 7px;
	padding-bottom: 17px;
	border-bottom: 1px solid #202126;
	color: #85858e;
	font-size: 9px;
}
.chat-context span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4ca561;
}
.user-message {
	width: max-content;
	margin: 25px 0 17px auto;
	padding: 10px 13px;
	border: 1px solid #32333a;
	border-radius: 8px 8px 2px 8px;
	background: #1c1d23;
	font-size: 11px;
}
.answer-card {
	padding: 17px;
	border: 1px solid #2b2c32;
	border-radius: 9px;
	background: #15161b;
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.answer-head {
	display: flex;
	align-items: center;
	gap: 10px;
}
.answer-head div {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.answer-head b {
	font-size: 12px;
}
.answer-head small {
	color: #72727c;
	font-size: 8px;
}
.ai-icon {
	width: 26px;
	height: 26px;
	display: grid;
	place-items: center;
	border-radius: 7px;
	background: rgba(255, 122, 0, 0.12);
	color: var(--accent);
}
.answer-card p {
	color: #9c9ca5;
	font-size: 10px;
	line-height: 1.55;
}
.mini-checks {
	display: flex;
	flex-direction: column;
	gap: 7px;
	padding: 10px 0 14px;
	color: #aaaab2;
	font-size: 9px;
}
.mini-checks span:first-child {
	color: #70b27d;
}
.answer-card button {
	width: 100%;
	display: flex;
	justify-content: space-between;
	padding: 9px 11px;
	border: 1px solid rgba(255, 122, 0, 0.3);
	border-radius: 6px;
	background: rgba(255, 122, 0, 0.08);
	color: #ff9b42;
	font: inherit;
	font-size: 9px;
}
@media (max-width: 920px) {
	nav {
		display: none;
	}
	.site-header {
		justify-content: space-between;
	}
	.hero {
		grid-template-columns: 1fr;
		padding-top: 60px;
	}
	.hero-copy {
		text-align: center;
	}
	.eyebrow,
	.hero-actions {
		justify-content: center;
	}
	.hero-lead {
		margin-inline: auto;
	}
	.trust-row {
		justify-content: center;
	}
	.hero-visual {
		width: min(680px, 100%);
		margin: 0 auto;
	}
}
@media (max-width: 560px) {
	.section-shell {
		width: min(100% - 28px, 1240px);
	}
	.site-header {
		height: 66px;
		padding: 0 15px;
	}
	.brand img {
		height: 29px;
	}
	.hero {
		padding-top: 45px;
		gap: 44px;
	}
	.hero-actions {
		flex-direction: column;
	}
	.trust-row {
		align-items: center;
		flex-direction: column;
	}
	.tablet-shot {
		padding: 5px;
		transform: none;
		border-radius: 12px;
	}
	.tablet-shot img {
		border-radius: 8px;
	}
}
.audience-strip {
	border-block: 1px solid #1d1e22;
	background: #090a0d;
}
.audience-strip .section-shell {
	min-height: 78px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	color: #787881;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.13em;
}
.content-section {
	padding-block: 118px;
}
.section-heading {
	max-width: 740px;
	margin: 0 auto 55px;
	text-align: center;
}
.section-heading.align-left {
	margin: 0;
	text-align: left;
}
.section-kicker {
	margin: 0 0 16px;
	color: var(--accent);
	font-size: 11px;
	font-weight: 750;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.section-heading h2,
.safety-grid h2,
.pilot-card h2,
.contact-copy h2 {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	line-height: 1.08;
	letter-spacing: -0.045em;
}
.section-heading > p:last-child,
.safety-grid > div > p:last-child,
.pilot-card > div > p,
.contact-copy > p {
	color: var(--muted);
	font-size: 16px;
	line-height: 1.7;
}
.section-heading > p:last-child {
	max-width: 620px;
	margin: 20px auto 0;
}
#problem .section-heading {
	margin-bottom: 37px;
}
#problem {
	padding-top: 82px;
}
.pain-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.pain-card {
	position: relative;
	min-height: 250px;
	padding: 28px 25px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: linear-gradient(145deg, #131419, #0d0e11);
}
.card-number {
	position: absolute;
	top: 18px;
	right: 20px;
	color: #62636c;
	font-size: 11px;
}
.line-icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	margin-bottom: 25px;
	border: 1px solid rgba(255, 122, 0, 0.18);
	border-radius: 9px;
	background: rgba(255, 122, 0, 0.06);
	color: var(--accent);
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}
.line-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.pain-card:hover .line-icon {
	border-color: rgba(255, 122, 0, 0.38);
	background: rgba(255, 122, 0, 0.1);
	box-shadow: 0 0 24px rgba(255, 122, 0, 0.12);
	transform: translateY(-1px);
}
.pain-card h3,
.benefits-grid h3,
.rollout-title,
.safety-cards h3 {
	margin: 0 0 11px;
	font-size: 17px;
	letter-spacing: -0.02em;
}
.pain-card p,
.benefits-grid p,
.rollout-description,
.safety-cards p {
	margin: 0;
	color: #8f8f98;
	font-size: 13px;
	line-height: 1.65;
}
.dark-band {
	border-block: 1px solid #1c1d21;
	background: #0b0c0f;
}
.solution-grid {
	display: grid;
	grid-template-columns: 0.98fr 1.02fr;
	gap: 90px;
	align-items: center;
	padding-block: 118px;
}
.text-link {
	display: inline-flex;
	gap: 10px;
	margin-top: 9px;
	color: #f1f1f3;
	font-size: 14px;
	font-weight: 650;
}
.text-link span {
	color: var(--accent);
}
.feature-stack {
	display: flex;
	flex-direction: column;
}
.feature-stack article {
	display: grid;
	grid-template-columns: 54px 1fr;
	gap: 20px;
	padding: 27px 0;
	border-bottom: 1px solid #25262b;
}
.feature-stack article:first-child {
	border-top: 1px solid #25262b;
}
.feature-stack article > span {
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border: 1px solid #37383e;
	border-radius: 8px;
	color: var(--accent);
	font-size: 12px;
	font-weight: 700;
}
.feature-stack h3 {
	margin: 0 0 8px;
	font-size: 17px;
}
.feature-stack p {
	margin: 0;
	color: #a1a1aa;
	font-size: 13px;
	line-height: 1.6;
}
.devices-section {
	position: relative;
	overflow: hidden;
	padding-block: 118px 124px;
	border-bottom: 1px solid #1c1d21;
	background: #050506;
}
.devices-section::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent);
}
.devices-section .section-shell {
	position: relative;
}
.devices-section .section-heading {
	margin-bottom: 40px;
}
.devices-showcase {
	position: relative;
	max-width: 1120px;
	margin: 0 auto;
	padding: 20px 38px 0;
	border: 1px solid var(--border);
	border-radius: 16px;
	background:
		radial-gradient(circle at 48% 44%, rgba(255, 122, 0, 0.075), transparent 38%),
		linear-gradient(145deg, #0d0e12, #090a0d);
	box-shadow: 0 35px 100px rgba(0, 0, 0, 0.35);
}
.devices-stage {
	position: relative;
	min-height: 580px;
}
.devices-stage::after {
	content: '';
	position: absolute;
	left: 5%;
	right: 4%;
	bottom: 22px;
	height: 48px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.68);
	filter: blur(22px);
}
.device {
	position: absolute;
	z-index: 1;
	overflow: hidden;
	border: 1px solid #383a42;
	background: linear-gradient(145deg, #1b1c22, #090a0d);
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.58),
		0 0 0 5px rgba(255, 255, 255, 0.014);
}
.device-screen {
	position: relative;
	overflow: hidden;
	background: #050506;
}
.device-screen img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}
.device-browser {
	top: 0;
	right: 0;
	width: 69%;
	display: flex;
	flex-direction: column;
	border-radius: 12px;
	transform: perspective(1400px) rotateY(-2deg);
}
.browser-bar {
	height: 34px;
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 12px;
	border-bottom: 1px solid #292a30;
	background: #181a20;
}
.browser-bar > span {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #4b4c54;
}
.browser-bar > span:first-child {
	background: var(--accent);
	opacity: 0.75;
}
.browser-bar i {
	min-width: 150px;
	margin: 0 auto;
	padding: 5px 25px;
	border: 1px solid #2f3037;
	border-radius: 5px;
	color: #6f7079;
	font-size: 8px;
	font-style: normal;
	text-align: center;
}
.device-browser .device-screen {
	width: 100%;
	height: auto;
	flex: 0 0 auto;
	aspect-ratio: 1545 / 1141;
}
.device-browser .device-screen img {
	position: absolute;
	inset: 0;
	object-fit: contain;
	object-position: center;
}
.device-tablet {
	left: 23%;
	bottom: 22px;
	z-index: 2;
	width: 31%;
	padding: 9px;
	border-radius: 18px;
	transform: perspective(1200px) rotateY(2deg);
}
.device-tablet .device-screen {
	aspect-ratio: 800 / 1340;
	border-radius: 11px;
}
.device-camera {
	position: absolute;
	top: 4px;
	left: 50%;
	z-index: 2;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: #555761;
}
.device-phone {
	left: 4%;
	bottom: 14px;
	z-index: 3;
	width: 19%;
	padding: 6px;
	border-radius: 25px;
	transform: perspective(1000px) rotateY(5deg) rotateZ(-1deg);
}
.device-phone .device-screen {
	aspect-ratio: 9 / 19.5;
	border-radius: 19px;
}
.phone-speaker {
	position: absolute;
	top: 10px;
	left: 50%;
	z-index: 2;
	width: 38%;
	height: 9px;
	border-radius: 0 0 7px 7px;
	background: #0a0b0e;
	transform: translateX(-50%);
}
.device-uses {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid var(--border);
}
.device-uses > div {
	min-height: 150px;
	padding: 27px 28px 30px;
}
.device-uses h3 {
	margin: 0 0 10px;
	font-size: 15px;
	letter-spacing: -0.01em;
}
.device-uses h3::before {
	content: '';
	display: inline-block;
	width: 5px;
	height: 5px;
	margin: 0 9px 2px 0;
	border-radius: 50%;
	background: var(--accent);
}
.device-uses p {
	margin: 0;
	color: #85858e;
	font-size: 12px;
	line-height: 1.65;
}
.demo-section {
	padding-bottom: 130px;
}
.demo-shell {
	display: grid;
	grid-template-columns: minmax(300px, 0.33fr) minmax(0, 1fr);
	gap: 42px;
	align-items: center;
}
.demo-steps {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 12px 2px;
	margin: 0;
	list-style: none;
}
.demo-steps li {
	position: relative;
}
.demo-steps li:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 41px;
	bottom: -41px;
	left: 17px;
	width: 1px;
	background: #33343a;
}
.demo-step {
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: 14px 26px minmax(0, 1fr);
	align-items: center;
	gap: 12px;
	min-height: 82px;
	padding: 13px 10px 13px 13px;
	border: 0;
	border-radius: 7px;
	background: transparent;
	color: #85858e;
	font: inherit;
	text-align: left;
	cursor: pointer;
	transition:
		background 0.2s ease,
		color 0.2s ease;
}
.demo-step::before {
	content: '';
	position: absolute;
	top: 12px;
	bottom: 12px;
	left: 0;
	width: 2px;
	border-radius: 2px;
	background: var(--accent);
	opacity: 0;
	transform: scaleY(0.55);
	transition:
		opacity 0.2s ease,
		transform 0.2s ease;
}
.demo-step:hover,
.demo-step:focus-visible {
	background: rgba(255, 255, 255, 0.035);
	color: #b9b9c0;
}
.demo-step:focus-visible {
	outline: 2px solid rgba(255, 122, 0, 0.75);
	outline-offset: -2px;
}
.demo-step.active {
	background: rgba(255, 122, 0, 0.08);
	color: #fff;
}
.demo-step.active::before {
	opacity: 1;
	transform: scaleY(1);
}
.step-marker {
	position: relative;
	z-index: 1;
	width: 9px;
	height: 9px;
	border: 1px solid #55565e;
	border-radius: 50%;
	background: #050506;
	box-shadow: 0 0 0 4px #050506;
}
.demo-step.complete .step-marker,
.demo-step.active .step-marker {
	border-color: var(--accent);
	background: var(--accent);
	box-shadow: 0 0 0 4px #050506;
}
.step-number {
	color: rgba(255, 255, 255, 0.55);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
}
.demo-step.active .step-number {
	color: var(--accent);
}
.step-copy {
	display: flex;
	flex-direction: column;
	gap: 5px;
	min-width: 0;
	transition: transform 0.2s ease;
}
.demo-step:hover .step-copy,
.demo-step:focus-visible .step-copy {
	transform: translateX(2px);
}
.step-copy b {
	color: rgba(255, 255, 255, 0.78);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.35;
}
.step-copy small {
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	line-height: 1.4;
}
.demo-step:hover .step-copy b,
.demo-step:focus-visible .step-copy b {
	color: rgba(255, 255, 255, 0.9);
}
.demo-step:hover .step-copy small,
.demo-step:focus-visible .step-copy small {
	color: rgba(255, 255, 255, 0.62);
}
.demo-step.active .step-copy b {
	color: #fff;
}
.demo-step.active .step-copy small {
	color: rgba(255, 255, 255, 0.72);
}
@media (prefers-reduced-motion: reduce) {
	.demo-step,
	.demo-step::before,
	.step-copy,
	.button-arrow,
	.line-icon,
	.benefit-icon {
		transition: none;
	}
}
.diagnostic-card {
	padding: 35px 40px;
	border: 1px solid #292a30;
	border-radius: 11px;
	background:
		radial-gradient(circle at 100% 0, rgba(255, 122, 0, 0.07), transparent 38%), #121318;
}
.diagnostic-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding-bottom: 22px;
	border-bottom: 1px solid #292a30;
}
.diagnostic-top small {
	color: #777781;
	font-size: 9px;
	font-weight: 700;
	letter-spacing: 0.1em;
}
.diagnostic-top h3 {
	margin: 10px 0 0;
	font-size: 25px;
	letter-spacing: -0.03em;
}
.status-dot {
	width: 6px;
	height: 6px;
	display: inline-block;
	margin-right: 7px;
	border-radius: 50%;
	background: #54a566;
}
.grounded-badge {
	padding: 7px 10px;
	border: 1px solid rgba(255, 122, 0, 0.24);
	border-radius: 6px;
	background: rgba(255, 122, 0, 0.07);
	color: #ff9840;
	font-size: 9px;
}
.diagnostic-summary {
	max-width: 680px;
	margin: 21px 0;
	color: #aaaab2;
	font-size: 13px;
	line-height: 1.65;
}
.checklist {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.checklist > div {
	display: flex;
	gap: 12px;
	min-height: 70px;
	padding: 13px;
	border: 1px solid #2b2c32;
	border-radius: 8px;
	background: #16171c;
}
.checklist > div > span {
	width: 23px;
	height: 23px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border: 1px solid #414248;
	border-radius: 50%;
	color: #8a8a93;
	font-size: 9px;
}
.checklist .checked > span {
	border-color: #3a7546;
	background: rgba(82, 166, 99, 0.09);
	color: #6dbc7c;
}
.checklist p {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin: 0;
}
.checklist b {
	font-size: 11px;
}
.checklist small {
	color: #73737c;
	font-size: 9px;
}
.warning-box {
	margin-top: 10px;
	padding: 13px 15px;
	border: 1px solid rgba(255, 163, 59, 0.2);
	border-radius: 8px;
	background: rgba(255, 163, 59, 0.045);
}
.warning-box b {
	color: #e9a24b;
	font-size: 10px;
}
.warning-box p {
	margin: 6px 0 0;
	color: #8f8b82;
	font-size: 9px;
}
.next-step {
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
	padding: 14px 16px;
	border: 1px solid rgba(255, 122, 0, 0.35);
	border-radius: 8px;
	background: rgba(255, 122, 0, 0.09);
	color: #ff9b42;
	font: inherit;
	font-size: 11px;
	font-weight: 650;
	cursor: pointer;
}
.video-tablet {
	width: 100%;
	min-width: 0;
	padding: 8px;
	border: 1px solid #35363c;
	border-radius: 18px;
	background: linear-gradient(145deg, #1a1b20, #090a0d);
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.42),
		0 0 0 7px rgba(255, 255, 255, 0.014);
	transform: perspective(1400px) rotateY(-1deg) rotateX(0.5deg);
}
.video-frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	aspect-ratio: 5/3;
	border: 1px solid #2d2e34;
	border-radius: 11px;
	background: #050506;
}
.video-frame video {
	position: absolute;
	top: 0;
	left: 50%;
	width: auto;
	min-width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
	transform: translateX(-50%);
	cursor: pointer;
}
.video-toggle {
	position: absolute;
	right: 14px;
	bottom: 14px;
	z-index: 2;
	width: 40px;
	height: 40px;
	display: grid;
	place-items: center;
	padding: 0;
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	background: rgba(5, 5, 6, 0.72);
	color: #fff;
	font: inherit;
	font-size: 15px;
	cursor: pointer;
	opacity: 0.78;
	backdrop-filter: blur(10px);
	transition:
		opacity 0.2s,
		background 0.2s;
}
.video-toggle:hover,
.video-toggle:focus-visible {
	opacity: 1;
	background: rgba(5, 5, 6, 0.92);
}
.video-toggle:focus-visible {
	outline: 2px solid var(--accent);
	outline-offset: 2px;
}
.benefits-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
.benefits-grid article {
	position: relative;
	min-height: 250px;
	padding: 28px 25px;
	overflow: hidden;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: linear-gradient(145deg, #131419, #0d0e11);
}
.benefits-grid strong {
	position: absolute;
	top: 18px;
	right: 20px;
	color: #62636c;
	font-size: 11px;
}
.benefit-icon {
	width: 54px;
	height: 54px;
	display: grid;
	place-items: center;
	margin: 0 0 25px;
	border: 1px solid rgba(255, 122, 0, 0.18);
	border-radius: 9px;
	background: rgba(255, 122, 0, 0.06);
	color: var(--accent);
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}
.benefit-icon svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.benefits-grid article:hover .benefit-icon {
	border-color: rgba(255, 122, 0, 0.38);
	background: rgba(255, 122, 0, 0.1);
	box-shadow: 0 0 24px rgba(255, 122, 0, 0.12);
	transform: translateY(-1px);
}
.rollout-section {
	padding-bottom: 130px;
}
.rollout-section .section-heading {
	margin-bottom: 48px;
}
.rollout-layout {
	display: grid;
	grid-template-columns: 0.7fr 1.3fr;
	gap: 56px;
	align-items: center;
}
.rollout-steps {
	padding: 0;
	margin: 0;
	border-block: 1px solid #25262b;
	list-style: none;
}
.rollout-steps li + li {
	border-top: 1px solid #25262b;
}
.rollout-step {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	gap: 18px;
	align-items: start;
	padding: 22px 0;
}
.rollout-number {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 122, 0, 0.32);
	border-radius: 10px;
	background: rgba(255, 122, 0, 0.055);
	color: var(--accent);
	font-size: 11px;
	font-weight: 750;
}
.rollout-copy {
	display: block;
	min-width: 0;
}
.rollout-title {
	display: block;
	margin: 1px 0 7px;
	font-size: 16px;
}
.rollout-description {
	display: block;
	max-width: 430px;
	font-size: 13px;
}
.admin-preview {
	min-width: 0;
	margin: 0;
	border: 1px solid #383a42;
	border-radius: 12px;
	overflow: hidden;
	background: linear-gradient(145deg, #1b1c22, #090a0d);
	box-shadow:
		0 28px 70px rgba(0, 0, 0, 0.5),
		0 0 0 5px rgba(255, 255, 255, 0.014);
}
.admin-preview-bar i {
	min-width: 180px;
	border-color: rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.025);
	color: #f4f4f5;
	font-size: 9px;
	font-weight: 500;
}
.admin-preview-frame {
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #08090b;
}
.admin-preview img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.safety-section {
	position: relative;
	overflow: hidden;
	border-block: 1px solid #282016;
	background: linear-gradient(110deg, #0d0d10, #11100f);
}
.safety-section::after {
	content: '';
	position: absolute;
	inset: -100% auto auto 62%;
	width: 650px;
	height: 650px;
	border-radius: 50%;
	background: rgba(255, 122, 0, 0.07);
	filter: blur(100px);
}
.safety-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 0.8fr 1.2fr;
	gap: 100px;
	align-items: center;
	padding-block: 105px;
}
.safety-grid > div > p:last-child {
	max-width: 500px;
}
.safety-cards {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.safety-cards article {
	display: flex;
	gap: 15px;
	padding: 22px;
	border: 1px solid #303033;
	border-radius: 10px;
	background: rgba(18, 19, 24, 0.72);
}
.safety-cards article > span {
	width: 44px;
	height: 44px;
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255, 122, 0, 0.22);
	border-radius: 9px;
	background: rgba(255, 122, 0, 0.06);
	color: var(--accent);
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}
.safety-cards article > span svg {
	width: 22px;
	height: 22px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
}
.safety-cards article:hover > span {
	border-color: rgba(255, 122, 0, 0.42);
	background: rgba(255, 122, 0, 0.1);
	box-shadow: 0 0 24px rgba(255, 122, 0, 0.12);
	transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
	.safety-cards article > span {
		transition: none;
	}
}
.safety-cards h3 {
	font-size: 14px;
}
.safety-cards p {
	font-size: 11px;
}
.pilot-card {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 70px;
	align-items: center;
	padding: 58px 64px;
	border: 1px solid #3a3027;
	border-radius: 15px;
	background: linear-gradient(120deg, #151311, #0d0e11);
	box-shadow: inset 0 0 70px rgba(255, 122, 0, 0.035);
}
.pilot-card h2 {
	font-size: 44px;
}
.pilot-card > div > p {
	max-width: 670px;
}
.pilot-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 25px;
	padding: 0;
	margin: 25px 0 0;
	list-style: none;
	color: #a0a0a8;
	font-size: 12px;
}
.pilot-card li::before {
	content: '✓';
	margin-right: 7px;
	color: var(--accent);
}
.pilot-actions {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact-section {
	border-top: 1px solid #1f2024;
	background: #0b0c0f;
}
.contact-grid {
	display: grid;
	grid-template-columns: 0.82fr 1.18fr;
	gap: 100px;
	align-items: center;
	padding-block: 120px;
}
.contact-copy > p {
	max-width: 500px;
}
.contact-points {
	display: flex;
	flex-direction: column;
	gap: 11px;
	margin-top: 29px;
	color: #9a9aa3;
	font-size: 12px;
}
.contact-points span::first-letter {
	color: var(--accent);
}
.contact-form {
	padding: 31px;
	border: 1px solid #2c2d32;
	border-radius: 13px;
	background: #121318;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}
.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.contact-form label {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 15px;
	color: #c5c5ca;
	font-size: 11px;
	font-weight: 650;
}
.contact-form input,
.contact-form textarea {
	width: 100%;
	border: 1px solid #303138;
	border-radius: 7px;
	outline: none;
	background: #0c0d10;
	color: #f4f4f5;
	font: inherit;
	font-size: 13px;
}
.contact-form input {
	height: 45px;
	padding: 0 13px;
}
.contact-form textarea {
	min-height: 105px;
	padding: 13px;
	resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
	border-color: rgba(255, 122, 0, 0.65);
	box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.07);
}
.form-submit {
	width: 100%;
	border: 0;
	cursor: pointer;
}
.form-note {
	margin: 11px 0 0;
	color: #65656d;
	font-size: 9px;
	text-align: center;
}
footer {
	border-top: 1px solid #1f2024;
	background: #070708;
}
.footer-inner {
	min-height: 110px;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	align-items: center;
}
.footer-inner p {
	color: #73737c;
	font-size: 11px;
	text-align: center;
}
.footer-inner > a:last-child {
	justify-self: end;
	color: #a5a5ad;
	font-size: 12px;
}
.footer-inner > a:last-child span {
	margin-left: 7px;
	color: var(--accent);
}
.footer-bottom {
	display: flex;
	justify-content: space-between;
	padding-block: 18px;
	border-top: 1px solid #1d1e22;
	color: #4f4f56;
	font-size: 9px;
}
@media (max-width: 1050px) {
	.pain-grid,
	.benefits-grid {
		grid-template-columns: 1fr 1fr;
	}
	.solution-grid,
	.safety-grid,
	.contact-grid {
		gap: 55px;
	}
	.rollout-layout {
		grid-template-columns: 1fr;
		gap: 44px;
	}
	.rollout-steps {
		width: min(100%, 680px);
		margin-inline: auto;
	}
	.pilot-card {
		padding: 45px;
		gap: 40px;
	}
}
@media (max-width: 920px) {
	.audience-strip .section-shell {
		justify-content: center;
		flex-wrap: wrap;
		padding-block: 25px;
	}
	.solution-grid,
	.safety-grid,
	.contact-grid,
	.pilot-card {
		grid-template-columns: 1fr;
	}
	.section-heading.align-left {
		text-align: center;
		margin-inline: auto;
	}
	.feature-stack {
		max-width: 650px;
		width: 100%;
		margin: 0 auto;
	}
	.demo-shell {
		grid-template-columns: 1fr;
		gap: 38px;
	}
	.demo-steps {
		display: grid;
		grid-template-columns: 1fr;
		padding: 2px;
		width: min(100%, 520px);
		margin-inline: auto;
	}
	.pilot-actions {
		flex-direction: row;
	}
	.contact-copy {
		text-align: center;
	}
	.contact-copy > p {
		margin-inline: auto;
	}
	.contact-points {
		align-items: center;
	}
	.devices-showcase {
		padding-inline: 24px;
	}
	.devices-stage {
		min-height: 530px;
	}
	.device-browser {
		width: 76%;
	}
	.device-tablet {
		left: 20%;
		width: 34%;
	}
	.device-phone {
		left: 2%;
		width: 21%;
	}
}
@media (max-width: 660px) {
	.content-section {
		padding-block: 82px;
	}
	.pain-grid,
	.benefits-grid,
	.safety-cards,
	.checklist {
		grid-template-columns: 1fr;
	}
	.solution-grid,
	.safety-grid,
	.contact-grid {
		padding-block: 82px;
	}
	.demo-steps {
		grid-template-columns: 1fr;
	}
	.video-tablet {
		padding: 6px;
		border-radius: 14px;
	}
	.video-frame {
		border-radius: 9px;
	}
	.diagnostic-card {
		padding: 24px 18px;
	}
	.rollout-section .section-heading {
		margin-bottom: 38px;
	}
	.rollout-layout {
		gap: 34px;
	}
	.admin-preview-bar i {
		min-width: 120px;
	}
	.pilot-card {
		padding: 35px 25px;
	}
	.pilot-actions {
		flex-direction: column;
	}
	.form-row {
		grid-template-columns: 1fr;
	}
	.devices-section {
		padding-block: 82px;
	}
	.devices-showcase {
		padding: 18px 14px 0;
	}
	.devices-stage {
		min-height: clamp(390px, 112vw, 510px);
	}
	.device-browser {
		top: 10px;
		right: -5%;
		width: 88%;
		transform: none;
	}
	.device-tablet {
		left: 27%;
		bottom: 18px;
		width: 43%;
		transform: none;
	}
	.device-phone {
		left: 1%;
		bottom: 10px;
		width: 27%;
		transform: rotateZ(-1deg);
	}
	.device-uses {
		grid-template-columns: 1fr;
	}
	.device-uses > div {
		min-height: 0;
		padding: 20px 6px;
	}
	.device-uses > div + div {
		border-top: 1px solid var(--border);
		border-left: 0;
	}
	.footer-inner {
		grid-template-columns: 1fr;
		gap: 15px;
		padding-block: 35px;
		text-align: center;
	}
	.footer-inner > a,
	.footer-inner > a:last-child {
		justify-self: center;
	}
	.footer-inner p {
		margin: 0;
	}
	.audience-strip span {
		width: 42%;
		text-align: center;
	}
}
@media (max-width: 560px) {
	.site-header .button-small {
		min-height: 36px;
		padding-inline: 13px;
		font-size: 12px;
	}
	.section-heading {
		margin-bottom: 38px;
	}
	.pain-card,
	.benefits-grid article {
		min-height: 220px;
	}
	.pilot-card h2 {
		font-size: 36px;
	}
	.contact-form {
		padding: 22px 17px;
	}
	.footer-bottom {
		flex-direction: column;
		align-items: center;
		gap: 8px;
	}
}
