:root {
	--color-brand: #ffb900;
	--color-brand-light: #ffd45a;
	--color-brand-dark: #e5a400;
	--color-text: #2d2d2d;
	--color-white: #ffffff;
	--color-black: #0f0f0f;
	--color-gray-900: #1a1a1a;
	--color-gray-700: #444444;
	--color-gray-500: #777777;
	--color-gray-200: #eaeaea;
	--color-gray-100: #f6f6f6;
	--font: "Manrope", Arial, sans-serif;
	--radius: 16px;
	--radius-lg: 24px;
	--shadow: 0 16px 42px rgba(15, 15, 15, 0.1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font);
	color: var(--color-text);
	background: var(--color-white);
	line-height: 1.55;
}

a { color: inherit; }

img { max-width: 100%; height: auto; }

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

.container {
	width: min(1120px, calc(100% - 36px));
	margin: 0 auto;
}

.header {
	position: sticky;
	top: 0;
	z-index: 10;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--color-gray-200);
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-height: 72px;
}

.brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	font-weight: 800;
}

.brand img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

.brand small {
	display: block;
	font-size: 12px;
	font-weight: 700;
	color: var(--color-gray-500);
}

.nav {
	display: flex;
	gap: 18px;
	font-weight: 700;
	font-size: 14px;
}

.nav a { text-decoration: none; }

.nav a:hover { color: var(--color-brand-dark); }

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 22px;
	border-radius: 999px;
	background: var(--color-brand);
	color: var(--color-black);
	font-weight: 800;
	text-decoration: none;
	transition: transform 180ms ease, background 180ms ease;
}

.button:hover { background: var(--color-brand-light); transform: translateY(-1px); }

.button--ghost {
	background: var(--color-gray-100);
}

.button--small { min-height: 40px; padding: 0 16px; font-size: 14px; }

.button--full { width: 100%; }

.button[aria-disabled="true"] {
	pointer-events: none;
	opacity: 0.55;
}

.eyebrow {
	margin: 0 0 10px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-brand-dark);
}

h1, h2, h3 { margin: 0 0 12px; line-height: 1.15; }

h1 { font-size: clamp(36px, 6vw, 58px); }

h2 { font-size: clamp(28px, 4vw, 40px); }

.lead, .section-heading p {
	max-width: 720px;
	color: var(--color-gray-700);
	font-size: 18px;
}

.hero {
	position: relative;
	overflow: hidden;
	padding: 72px 0 40px;
}

.hero__glow,
.hero__orb {
	pointer-events: none;
	position: absolute;
}

.hero__glow {
	inset: -80px -40px auto;
	height: 420px;
	background:
		radial-gradient(circle at 18% 20%, rgba(255, 185, 0, 0.18), transparent 42%),
		radial-gradient(circle at 82% 10%, rgba(255, 185, 0, 0.1), transparent 38%);
}

.hero__orb {
	border-radius: 50%;
	filter: blur(2px);
}

.hero__orb--one {
	width: 160px;
	height: 160px;
	right: 8%;
	top: 48px;
	background: radial-gradient(circle, rgba(255, 185, 0, 0.35), transparent 68%);
}

.hero__orb--two {
	width: 90px;
	height: 90px;
	left: 42%;
	bottom: 24px;
	background: radial-gradient(circle, rgba(15, 15, 15, 0.08), transparent 70%);
}

.hero__stage {
	position: relative;
	z-index: 1;
}

.hero__grid {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	gap: 48px;
	align-items: center;
}

.hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 28px 0 18px;
}

.hero__meta {
	margin: 0;
	padding: 0;
	list-style: none;
	color: var(--color-gray-500);
	font-size: 14px;
	font-weight: 600;
}

.hero__meta li + li { margin-top: 4px; }

.app {
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(8, 10, 20, 0.45);
	border: 1px solid #1f2438;
	background: #0b1020;
	color: #eef2ff;
	font-size: 12px;
}

.app__bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	padding: 8px 10px;
	background: #12182b;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.app__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
	height: 22px;
	padding: 0 6px;
	border-radius: 7px;
	background: var(--color-brand);
	color: #111;
	font-size: 9px;
	font-weight: 800;
}

.app__bar strong {
	font-size: 12px;
	font-weight: 800;
}

.app__chip {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 3px 8px;
	border-radius: 8px;
	background: #0d1324;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.app__chip em {
	font-style: normal;
	font-size: 9px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.app__chip b { font-variant-numeric: tabular-nums; letter-spacing: 0.04em; }

.app__status {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: #94a3b8;
}

.app__status i {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #34d399;
}

.app__connect {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-left: auto;
}

.app__field,
.app__go,
.app__stop {
	padding: 5px 8px;
	border-radius: 8px;
	font-weight: 700;
}

.app__field {
	min-width: 72px;
	background: #0d1324;
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: #64748b;
	font-weight: 500;
}

.app__go {
	margin-left: auto;
	color: #111;
	background: var(--color-brand);
}

.app__stop {
	background: transparent;
	color: #fda4af;
	border: 1px solid rgba(255, 255, 255, 0.12);
}

.app__body {
	display: grid;
	grid-template-columns: 1fr 220px;
	min-height: 320px;
}

.app__desktop {
	display: grid;
	place-content: center;
	text-align: center;
	background:
		radial-gradient(circle at 70% 20%, rgba(255, 185, 0, 0.12), transparent 36%),
		#080b16;
	color: #cbd5e1;
}

.app__desktop small { color: #64748b; }

.app__drawer {
	display: grid;
	grid-template-columns: 92px 1fr;
	background: #12182b;
	border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.app__drawer nav {
	display: flex;
	flex-direction: column;
	padding: 10px 6px;
	gap: 2px;
	color: #94a3b8;
}

.app__drawer nav span {
	padding: 6px 8px;
	border-radius: 8px;
}

.app__drawer nav .on {
	background: rgba(255, 185, 0, 0.16);
	color: #fff;
	font-weight: 700;
}

.app__pane {
	padding: 10px 12px 14px;
	border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.app__pane p {
	margin: 12px 0 6px;
	font-size: 10px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.app__pane label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	min-height: 28px;
	color: #e2e8f0;
}

.app__pane i {
	flex: 0 0 28px;
	width: 28px;
	height: 16px;
	border-radius: 999px;
	background: #334155;
	position: relative;
}

.app__pane i::after {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #e2e8f0;
}

.app__pane .is-on i { background: var(--color-brand); }

.app__pane .is-on i::after { left: 14px; background: #111; }

.section { padding: 72px 0; }

.section--gray { background: var(--color-gray-100); }

.section--dark {
	background: var(--color-black);
	color: #fff;
}

.section--dark .eyebrow { color: var(--color-brand); }

.section--dark p,
.section--dark li { color: #d6d6d6; }

.section-heading { margin-bottom: 36px; }

.cards {
	display: grid;
	gap: 16px;
}

.cards--3 { grid-template-columns: repeat(3, 1fr); }

.card,
.feature-list article,
.steps li,
.faq details,
.download__box {
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	padding: 22px;
}

.feature-list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.feature-list code {
	font-size: 13px;
	background: var(--color-gray-100);
	padding: 2px 6px;
	border-radius: 6px;
}

.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: step;
}

.steps li { counter-increment: step; }

.steps li::before {
	content: counter(step);
	display: inline-flex;
	width: 32px;
	height: 32px;
	margin-bottom: 12px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--color-brand);
	font-weight: 800;
}

.steps strong,
.steps span { display: block; }

.steps span { margin-top: 8px; color: var(--color-gray-700); }

.download {
	display: grid;
	grid-template-columns: 1.2fr 0.8fr;
	gap: 32px;
	align-items: center;
}

.download__facts {
	padding-left: 18px;
}

.download__box { background: #171717; }

.download__box .fineprint,
.download__box a { color: #e8e8e8; }

.download__status {
	margin-top: 16px;
	font-weight: 700;
}

.faq {
	display: grid;
	gap: 10px;
}

.faq summary {
	cursor: pointer;
	font-weight: 800;
}

.faq p { margin: 10px 0 0; color: var(--color-gray-700); }

.footer {
	padding: 32px 0 48px;
	border-top: 1px solid var(--color-gray-200);
	color: var(--color-gray-700);
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	gap: 24px;
}

.footer__legal {
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--color-gray-200);
	display: grid;
	gap: 8px;
	font-size: 13px;
	line-height: 1.5;
	color: var(--color-gray-500);
}

.footer__legal p { margin: 0; }

@media (max-width: 900px) {
	.nav, .header .button--small { display: none; }

	.hero__grid,
	.cards--3,
	.feature-list,
	.steps,
	.download,
	.footer__inner,
	.app__body,
	.app__drawer {
		grid-template-columns: 1fr;
		display: grid;
	}

	.app__connect,
	.app__drawer nav { display: none; }

	.app__desktop { min-height: 160px; }

	.hero { padding-top: 40px; }

	.stats__grid,
	.flow,
	.path,
	.strip,
	.scenes {
		grid-template-columns: 1fr;
	}

	.flow__line,
	.path__wire {
		display: none;
	}
}

.stats {
	padding: 8px 0 24px;
}

.stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.stats__item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 18px 20px;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	background: var(--color-white);
}

.stats__item span {
	flex: 0 0 36px;
	width: 36px;
	height: 36px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--color-brand);
	color: var(--color-black);
	font-weight: 800;
}

.stats__item p {
	margin: 0;
	font-weight: 600;
	color: var(--color-gray-700);
}

.flow {
	display: grid;
	grid-template-columns: 1fr 28px 1fr 28px 1fr;
	gap: 16px;
	align-items: start;
}

.flow__node {
	min-width: 0;
	padding: 22px;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	background: var(--color-white);
}

.flow__icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	margin-bottom: 16px;
	border-radius: 14px;
	background: #fff6d8;
	color: var(--color-black);
}

.flow__icon svg {
	width: 28px;
	height: 28px;
	max-width: 28px;
	max-height: 28px;
}

.flow__line {
	width: 100%;
	height: 2px;
	margin-top: 46px;
	background: linear-gradient(90deg, var(--color-brand), var(--color-brand-light));
}

.flow__node h3 {
	font-size: 18px;
}

.flow__node p {
	margin: 0;
	color: var(--color-gray-700);
}

.flow__node code {
	font-size: 13px;
	background: var(--color-gray-100);
	padding: 2px 6px;
	border-radius: 6px;
}

.path {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 16px;
	margin-top: 32px;
	padding: 18px 22px;
	border-radius: var(--radius);
	background: var(--color-black);
	color: #fff;
}

.path__pc {
	display: grid;
	gap: 4px;
	min-width: 160px;
}

.path__pc strong { font-size: 15px; }

.path__pc span {
	font-size: 13px;
	color: var(--color-brand);
	font-weight: 700;
}

.path__wire {
	width: 100%;
	height: 48px;
	overflow: visible;
}

.path__wire path {
	fill: none;
	stroke: var(--color-brand);
	stroke-width: 2;
}

.path__dot,
.path__pulse {
	fill: var(--color-brand);
}

.path__pulse {
	transform-box: fill-box;
	transform-origin: center;
	animation: path-pulse 1.8s ease-out infinite;
}

@keyframes path-pulse {
	0% { opacity: 0.7; transform: scale(1); }
	100% { opacity: 0; transform: scale(5); }
}

.strip {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 10px;
	margin-bottom: 24px;
}

.strip__item {
	padding: 14px 12px;
	border-radius: 14px;
	background: var(--color-white);
	border: 1px solid var(--color-gray-200);
}

.strip__item b,
.strip__item span { display: block; }

.strip__item b { font-size: 15px; }

.strip__item span {
	margin-top: 4px;
	font-size: 13px;
	color: var(--color-gray-500);
	font-weight: 600;
}

.feature {
	min-width: 0;
}

.feature__icon {
	width: 44px;
	height: 44px;
	display: grid;
	place-items: center;
	margin-bottom: 14px;
	border-radius: 12px;
	background: #fff6d8;
	color: var(--color-black);
}

.feature__icon svg {
	width: 22px;
	height: 22px;
	max-width: 22px;
	max-height: 22px;
}

.scenes {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.scene {
	padding: 22px;
	border: 1px solid var(--color-gray-200);
	border-radius: var(--radius);
	background: var(--color-white);
}

.scene__num {
	margin-bottom: 12px;
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--color-brand-dark);
}

.download-section {
	position: relative;
	overflow: hidden;
}

.download-section__glow {
	pointer-events: none;
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 80% 20%, rgba(255, 185, 0, 0.18), transparent 42%);
}

.download-section .container { position: relative; z-index: 1; }

@media (max-width: 1100px) {
	.strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.stats__grid,
	.flow,
	.path,
	.strip,
	.scenes {
		grid-template-columns: 1fr;
	}

	.flow__line,
	.path__wire {
		display: none;
	}
}
