:root {
	--pckh-bg: #070d16;
	--pckh-card: #111925;
	--pckh-card-2: #0c131e;
	--pckh-border: #263141;
	--pckh-text: #f5f7fa;
	--pckh-muted: #98a7bd;
	--pckh-accent: #00d8e8;
	--pckh-green: #37d67a;
	--pckh-warning: #ffb84d;
}

html {
	scroll-behavior: smooth;
}

body.home {
	margin: 0;
	background:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
		radial-gradient(circle at 18% 12%, rgba(0,216,232,.18), transparent 26rem),
		radial-gradient(circle at 82% 6%, rgba(55,214,122,.12), transparent 25rem),
		var(--pckh-bg);
	background-size: 48px 48px, 48px 48px, auto, auto, auto;
	color: var(--pckh-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	overflow-x: hidden;
}

body.home:before {
	content: "";
	position: fixed;
	inset: 0;
	z-index: -1;
	pointer-events: none;
	background:
		radial-gradient(circle at 12% 18%, rgba(0,216,232,.16), transparent 18rem),
		radial-gradient(circle at 82% 10%, rgba(55,214,122,.14), transparent 20rem),
		linear-gradient(115deg, transparent 0 42%, rgba(0,216,232,.08) 42.2%, transparent 42.6% 100%);
	filter: saturate(1.2);
	animation: pckh-aurora 14s ease-in-out infinite alternate;
}

body.home:after {
	content: "";
	position: fixed;
	inset: -18%;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(115deg, transparent 0 18%, rgba(0,216,232,.1) 18.1% 18.35%, transparent 18.5% 46%, rgba(55,214,122,.08) 46.1% 46.35%, transparent 46.5% 100%),
		linear-gradient(245deg, transparent 0 32%, rgba(0,216,232,.08) 32.1% 32.3%, transparent 32.45% 70%, rgba(255,255,255,.04) 70.1% 70.25%, transparent 70.4% 100%);
	opacity: .55;
	filter: blur(.2px);
	animation: pckh-circuit-flow 18s linear infinite;
}

.pckh-header svg,
.pckh-footer svg,
body.home svg {
	width: 1em;
	height: 1em;
	fill: none;
	stroke: currentColor;
	stroke-width: 2;
	stroke-linecap: round;
	stroke-linejoin: round;
}

body.home a {
	color: inherit;
	text-decoration: none;
}

body.home a:focus-visible,
body.home button:focus-visible {
	outline: 3px solid rgba(0,216,232,.55);
	outline-offset: 4px;
}

.pckh-header {
	position: sticky;
	top: 0;
	z-index: 50;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 64px;
	padding: 0 max(16px, calc((100vw - 1280px) / 2));
	border-bottom: 1px solid rgba(38,49,65,.85);
	background: rgba(7,13,22,.9);
	backdrop-filter: blur(14px);
}

.pckh-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 18px;
	font-weight: 900;
	white-space: nowrap;
}

.pckh-brand span span {
	color: var(--pckh-green);
}

.pckh-logo {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: var(--pckh-accent);
	color: #021019;
	box-shadow: 0 0 28px rgba(0,216,232,.25);
}

.pckh-logo svg {
	width: 22px;
	height: 22px;
	display: block;
	stroke-width: 2;
}

.pckh-nav {
	display: flex;
	justify-content: center;
	gap: clamp(14px, 2vw, 34px);
	color: var(--pckh-muted);
	font-size: 15px;
	font-weight: 700;
}

.pckh-nav a:hover {
	color: var(--pckh-text);
}

.pckh-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0 24px;
	border-radius: 14px;
	border: 1px solid rgba(255,255,255,.12);
	font-weight: 900;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pckh-button:hover {
	transform: translateY(-2px);
}

.pckh-button-primary {
	background: linear-gradient(135deg, var(--pckh-accent), #38f0d0);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 16px 32px rgba(0,216,232,.2);
	text-shadow: 0 1px 10px rgba(0,0,0,.32);
}

body.home .pckh-header .pckh-build.pckh-button-primary,
body.home .pckh-header .pckh-build.pckh-button-primary:hover,
body.home .pckh-header .pckh-build.pckh-button-primary:focus-visible,
body:not(.home) .pckh-header .pckh-build.pckh-button-primary,
body:not(.home) .pckh-header .pckh-build.pckh-button-primary:hover,
body:not(.home) .pckh-header .pckh-build.pckh-button-primary:focus-visible {
	color: #fff !important;
}

.pckh-actions {
	display: inline-flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	white-space: nowrap;
}

.pckh-icon-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 14px;
	border: 1px solid rgba(152,167,189,.22);
	border-radius: 14px;
	background: rgba(255,255,255,.045);
	color: var(--pckh-text);
	font-size: 14px;
	font-weight: 850;
	transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.pckh-icon-link:hover {
	transform: translateY(-1px);
	border-color: rgba(0,216,232,.42);
	background: rgba(255,255,255,.07);
	color: var(--pckh-text);
}

.pckh-icon-link svg {
	width: 19px;
	height: 19px;
	flex: 0 0 auto;
	color: #9debf1;
}

.pckh-cart-link b {
	position: absolute;
	top: -7px;
	right: -7px;
	display: grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 6px;
	border-radius: 999px;
	background: var(--pckh-green);
	color: #03120c;
	font-size: 11px;
	font-weight: 950;
	border: 2px solid #070d16;
}

.pckh-button-secondary {
	background: rgba(17,25,37,.62);
	color: var(--pckh-text);
}

.pckh-button-standard {
	background: linear-gradient(135deg, rgba(17,25,37,.92), rgba(0,216,232,.13));
	color: #fff;
	border-color: rgba(0,216,232,.28);
	box-shadow: 0 14px 30px rgba(0,0,0,.16);
}

.pckh-button-standard:hover,
.pckh-button-standard:focus-visible {
	color: #fff;
	border-color: rgba(55,214,122,.46);
	background: linear-gradient(135deg, rgba(17,25,37,.98), rgba(55,214,122,.14));
}

.pckh-main {
	min-height: 100vh;
}

.pckh-hero {
	position: relative;
	overflow: hidden;
	background:
		linear-gradient(90deg, rgba(0,216,232,.22), rgba(55,214,122,.1)),
		linear-gradient(180deg, rgba(7,13,22,.15), rgba(7,13,22,.92));
}

.pckh-hero:before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, transparent 0 35%, rgba(0,216,232,.12) 35% 36%, transparent 36%),
		repeating-linear-gradient(90deg, transparent 0 70px, rgba(0,216,232,.06) 70px 71px, transparent 71px 142px);
	opacity: .55;
	pointer-events: none;
	animation: pckh-grid-drift 18s linear infinite;
}

.pckh-hero:after {
	content: "";
	position: absolute;
	inset: -30%;
	background: conic-gradient(from 120deg at 50% 50%, transparent 0deg, rgba(0,216,232,.18) 54deg, transparent 118deg, rgba(55,214,122,.13) 185deg, transparent 260deg, rgba(0,216,232,.15) 318deg, transparent 360deg);
	opacity: .46;
	filter: blur(26px);
	animation: pckh-scan-rotate 22s linear infinite;
	pointer-events: none;
}

.pckh-hero-inner,
.pckh-section,
.pckh-cta,
.pckh-footer {
	width: min(1280px, calc(100% - 32px));
	margin: 0 auto;
}

.pckh-hero-inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
	gap: clamp(32px, 5vw, 78px);
	align-items: center;
	min-height: 670px;
	padding: 80px 0 72px;
}

.pckh-hero-inner:before {
	content: "";
	position: absolute;
	inset: 52px -72px 44px;
	z-index: -1;
	pointer-events: none;
	background:
		linear-gradient(90deg, transparent 0 8%, rgba(0,216,232,.22) 8.1% 8.22%, transparent 8.35% 100%),
		linear-gradient(90deg, transparent 0 62%, rgba(55,214,122,.16) 62.1% 62.22%, transparent 62.35% 100%),
		linear-gradient(0deg, transparent 0 36%, rgba(0,216,232,.12) 36.1% 36.28%, transparent 36.45% 100%),
		radial-gradient(circle at 8% 36%, rgba(0,216,232,.55) 0 3px, transparent 4px),
		radial-gradient(circle at 62% 36%, rgba(55,214,122,.42) 0 3px, transparent 4px),
		radial-gradient(circle at 78% 64%, rgba(0,216,232,.46) 0 3px, transparent 4px);
	opacity: .46;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	animation: pckh-trace-pulse 5.8s ease-in-out infinite;
}

.pckh-hero-copy {
	position: relative;
	z-index: 2;
}

.pckh-hero-copy:after {
	content: "";
	position: absolute;
	left: -10%;
	top: 12%;
	width: 74%;
	height: 44%;
	z-index: -1;
	border-radius: 999px;
	background: rgba(0,216,232,.16);
	filter: blur(70px);
	animation: pckh-pulse 4.8s ease-in-out infinite;
}

.pckh-kicker,
.pckh-label {
	margin: 0 0 14px;
	color: var(--pckh-accent);
	text-transform: uppercase;
	letter-spacing: .14em;
	font-size: 12px;
	font-weight: 900;
}

.pckh-kicker {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 7px 12px;
	border: 1px solid rgba(255,255,255,.11);
	border-radius: 999px;
	background: rgba(17,25,37,.62);
	color: var(--pckh-muted);
	text-transform: none;
	letter-spacing: 0;
}

.pckh-kicker span {
	width: 9px;
	height: 9px;
	border-radius: 999px;
	background: var(--pckh-green);
	box-shadow: 0 0 18px var(--pckh-green);
}

.pckh-hero h1,
.pckh-section h2,
.pckh-cta h2 {
	margin: 0;
	color: var(--pckh-text);
	letter-spacing: 0;
	line-height: 1.05;
}

.pckh-hero h1 {
	max-width: 650px;
	font-size: clamp(44px, 5.2vw, 78px);
}

.pckh-hero h1 span {
	display: block;
	background: linear-gradient(90deg, var(--pckh-accent), var(--pckh-green));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.pckh-lead,
.pckh-section-lead,
.pckh-cta p {
	color: var(--pckh-muted);
	font-size: 18px;
	line-height: 1.65;
}

.pckh-lead {
	max-width: 660px;
	margin: 28px 0 28px;
}

.pckh-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.pckh-config-stack {
	display: grid;
	gap: 10px;
	width: min(440px, 100%);
}

.pckh-config-stack .pckh-button {
	justify-content: center;
	width: 100%;
}

.pckh-text-link {
	display: inline-flex;
	margin-top: 16px;
	color: var(--pckh-accent);
	font-weight: 900;
}

.pckh-trust {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	padding: 0;
	margin: 34px 0 0;
	list-style: none;
	color: var(--pckh-muted);
	font-size: 14px;
}

.pckh-trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.pckh-trust svg {
	color: var(--pckh-accent);
}

.pckh-hero-visual {
	position: relative;
	min-height: 410px;
	border: 1px solid rgba(255,255,255,.13);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(17,25,37,.96), rgba(6,11,18,.96));
	box-shadow: 0 28px 80px rgba(0,0,0,.45), 0 0 80px rgba(0,216,232,.16);
	transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
	overflow: hidden;
	animation: pckh-float 7s ease-in-out infinite;
}

.pckh-hero-visual:before,
.pckh-hero-visual:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.pckh-hero-visual:before {
	background:
		radial-gradient(circle at 72% 28%, rgba(0,216,232,.34), transparent 18rem),
		radial-gradient(circle at 38% 68%, rgba(55,214,122,.2), transparent 15rem),
		linear-gradient(110deg, transparent 0 38%, rgba(255,255,255,.12) 42%, transparent 47% 100%);
	mix-blend-mode: screen;
	animation: pckh-visual-breathe 4.6s ease-in-out infinite;
}

.pckh-hero-visual:after {
	inset: -40% -65%;
	background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,.2) 49%, transparent 61%);
	transform: translateX(-45%);
	animation: pckh-glass-sweep 6.8s ease-in-out infinite;
}

.pckh-hero-visual img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .82;
}

.pckh-chip,
.pckh-visual-panel {
	position: absolute;
	z-index: 2;
	border: 1px solid rgba(0,216,232,.45);
	border-radius: 12px;
	background: rgba(7,13,22,.88);
	box-shadow: 0 14px 40px rgba(0,0,0,.32);
}

.pckh-chip {
	padding: 10px 14px;
	color: var(--pckh-muted);
	font-size: 11px;
	font-weight: 900;
	animation: pckh-chip-glow 3.8s ease-in-out infinite;
}

.pckh-chip strong {
	display: block;
	color: var(--pckh-text);
	font-size: 15px;
}

.pckh-chip-gpu {
	left: 22px;
	top: 24px;
}

.pckh-chip-cpu {
	right: 22px;
	top: 48%;
	border-color: rgba(55,214,122,.45);
}

.pckh-visual-panel {
	left: 24px;
	right: 24px;
	bottom: 22px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 8px 18px;
	padding: 18px;
	background: rgba(7,13,22,.9);
	color: inherit;
	text-decoration: none;
	transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

body:not(.home) .pckh-visual-panel,
body.home .pckh-visual-panel {
	color: inherit;
}

.pckh-visual-panel:hover,
.pckh-visual-panel:focus-visible {
	transform: translateY(-3px);
	border-color: rgba(55,214,122,.62);
	background: rgba(7,13,22,.94);
	box-shadow: 0 20px 52px rgba(0,0,0,.38), 0 0 30px rgba(0,216,232,.16);
}

.pckh-offer-badge {
	align-self: center;
	grid-row: 1 / span 2;
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 0 12px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(0,216,232,.24), rgba(55,214,122,.18));
	border: 1px solid rgba(0,216,232,.36);
	color: var(--pckh-accent) !important;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.pckh-offer-title {
	align-self: end;
	color: var(--pckh-text) !important;
	font-size: 17px;
	font-weight: 950;
}

.pckh-visual-panel em {
	color: var(--pckh-muted);
	font-style: normal;
}

.pckh-visual-panel strong {
	align-self: center;
	grid-row: 1 / span 2;
	font-size: 24px;
	color: var(--pckh-text);
}

.pckh-visual-panel em {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	color: var(--pckh-green);
}

.pckh-section {
	padding: 76px 0 24px;
}

.pckh-section h2,
.pckh-cta h2 {
	font-size: clamp(32px, 3vw, 48px);
}

.pckh-section-lead {
	max-width: 720px;
	margin: 18px 0 34px;
}

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

.pckh-goal-card {
	position: relative;
	min-height: 168px;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 14px;
	padding: 22px;
	border: 1px solid var(--pckh-border);
	border-radius: 16px;
	overflow: hidden;
	background: var(--pckh-card);
	box-shadow: 0 14px 42px rgba(0,0,0,.18);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pckh-goal-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: .38;
	transition: transform .3s ease, opacity .3s ease;
}

.pckh-goal-card:before {
	content: "";
	position: absolute;
	inset: -1px;
	z-index: 1;
	border-radius: inherit;
	background: linear-gradient(120deg, transparent 0 30%, var(--pckh-goal-glow, rgba(0,216,232,.58)), transparent 70% 100%);
	opacity: 0;
	transform: translateX(-22%);
	transition: opacity .22s ease, transform .32s ease;
	pointer-events: none;
}

.pckh-goal-card:after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(90deg, rgba(7,13,22,.86), rgba(7,13,22,.34));
}

.pckh-goal-card:hover {
	transform: translateY(-5px);
	border-color: var(--pckh-goal-accent, rgba(0,216,232,.52));
	box-shadow: 0 0 0 1px var(--pckh-goal-accent, rgba(0,216,232,.52)), 0 0 34px var(--pckh-goal-glow, rgba(0,216,232,.16)), 0 18px 52px rgba(0,0,0,.28);
}

.pckh-goal-card:hover:before {
	opacity: .26;
	transform: translateX(18%);
}

.pckh-goal-card:hover img {
	transform: scale(1.05);
	opacity: .5;
}

.pckh-goal-card span,
.pckh-goal-card b {
	position: relative;
	z-index: 2;
}

.pckh-goal-card strong {
	display: block;
	font-size: 20px;
	color: var(--pckh-text);
}

.pckh-goal-card em {
	display: block;
	margin-top: 8px;
	color: var(--pckh-muted);
	font-style: normal;
}

.pckh-goal-card b {
	align-self: end;
	color: var(--pckh-goal-accent, var(--pckh-accent));
	font-size: 20px;
	white-space: nowrap;
}

.pckh-section-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 24px;
}

.pckh-products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px;
	align-items: stretch;
}

.pckh-product-card,
.pckh-steps article {
	position: relative;
	border: 1px solid var(--pckh-product-accent, var(--pckh-border));
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(17,25,37,.96), rgba(12,19,30,.98));
	overflow: hidden;
	box-shadow: 0 18px 60px rgba(0,0,0,.22);
	transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.pckh-product-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	box-shadow: 0 0 0 1px rgba(255,255,255,.02), 0 18px 60px rgba(0,0,0,.25);
}

.pckh-product-card:before,
.pckh-steps article:before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		radial-gradient(circle at 18% 0, var(--pckh-product-glow, rgba(0,216,232,.18)), transparent 36%),
		linear-gradient(135deg, rgba(255,255,255,.08), transparent 38%);
	opacity: 0;
	transition: opacity .24s ease;
}

.pckh-product-card:after {
	content: "";
	position: absolute;
	inset: auto 18px 0;
	z-index: 3;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: var(--pckh-product-accent, var(--pckh-accent));
	box-shadow: 0 0 22px var(--pckh-product-glow, rgba(0,216,232,.28));
	opacity: .72;
	pointer-events: none;
}

.pckh-product-card:hover,
.pckh-steps article:hover {
	transform: translateY(-6px);
	border-color: var(--pckh-product-accent, rgba(0,216,232,.46));
	box-shadow: 0 0 0 1px var(--pckh-product-accent, rgba(0,216,232,.46)), 0 0 34px var(--pckh-product-glow, rgba(0,216,232,.22)), 0 24px 72px rgba(0,0,0,.34);
}

.pckh-product-card:hover:before,
.pckh-steps article:hover:before {
	opacity: 1;
}

.pckh-product-card img {
	display: block;
	width: 100%;
	height: 230px;
	object-fit: cover;
	background: #080d14;
	border-bottom: 1px solid rgba(255,255,255,.08);
	transition: transform .32s ease, filter .32s ease;
}

.pckh-product-card:hover img {
	transform: scale(1.035);
	filter: saturate(1.15) contrast(1.05);
}

.pckh-product-body {
	position: relative;
	z-index: 2;
	padding: 22px;
	display: flex;
	flex: 1;
	flex-direction: column;
}

.pckh-pill {
	display: inline-flex;
	padding: 5px 10px;
	border: 1px solid color-mix(in srgb, var(--pckh-product-accent, var(--pckh-accent)) 42%, rgba(255,255,255,.16));
	border-radius: 999px;
	font-size: 12px;
	font-weight: 900;
	color: var(--pckh-text);
	background: color-mix(in srgb, var(--pckh-product-accent, var(--pckh-accent)) 12%, rgba(7,13,22,.76));
}

.pckh-product-card h3,
.pckh-steps h3 {
	margin: 16px 0 8px;
	font-size: 20px;
	color: var(--pckh-text);
}

.pckh-product-card h3 {
	margin-bottom: 14px;
}

.pckh-product-card p,
.pckh-steps p,
.pckh-footer p {
	color: var(--pckh-muted);
	line-height: 1.55;
}

.pckh-product-card p {
	margin: 0 0 12px;
	font-size: 15px;
	font-weight: 500;
}

.pckh-product-card dl {
	display: grid;
	gap: 7px;
	margin: 4px 0 16px;
}

.pckh-product-card dl div {
	display: grid;
	grid-template-columns: 48px 1fr;
	gap: 16px;
}

.pckh-product-card dt {
	color: var(--pckh-muted);
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.pckh-product-card dd {
	margin: 0;
	color: var(--pckh-text);
	font-size: 14px;
	font-weight: 550;
	text-align: right;
}

.pckh-delivery {
	display: block;
	color: var(--pckh-muted);
	font-size: 13px;
	margin-top: 4px;
}

.pckh-product-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: auto;
	padding-top: 18px;
	border-top: 1px solid var(--pckh-border);
}

.pckh-product-foot strong {
	color: var(--pckh-product-accent, var(--pckh-accent));
	font-size: 28px;
	white-space: nowrap;
	text-shadow: 0 0 18px var(--pckh-product-glow, rgba(0,216,232,.2));
}

.pckh-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-top: 34px;
}

.pckh-steps article {
	padding: 26px;
}

.pckh-step-icon {
	display: inline-grid;
	place-items: center;
	width: 44px;
	height: 44px;
	border-radius: 14px;
	color: var(--pckh-accent);
	background: rgba(0,216,232,.1);
}

.pckh-steps small {
	margin-left: 12px;
	color: var(--pckh-muted);
	font-weight: 900;
	letter-spacing: .12em;
}

.pckh-cta {
	margin-top: 80px;
	padding: 68px 24px;
	text-align: center;
	border: 1px solid var(--pckh-border);
	border-radius: 22px;
	background:
		linear-gradient(135deg, rgba(0,216,232,.14), rgba(55,214,122,.12)),
		repeating-linear-gradient(135deg, transparent 0 34px, rgba(0,216,232,.07) 34px 35px),
		var(--pckh-card);
}

.pckh-cta p {
	max-width: 720px;
	margin: 18px auto 28px;
}

.pckh-cta .pckh-actions {
	justify-content: center;
}

.pckh-footer {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
	gap: 52px;
	margin-top: 90px;
	padding: 58px 0 26px;
	border-top: 1px solid var(--pckh-border);
}

.pckh-footer h2 {
	margin: 0 0 14px;
	font-size: 16px;
}

.pckh-footer a {
	display: block;
	margin: 10px 0;
	color: var(--pckh-muted);
}

.pckh-footer a:hover {
	color: var(--pckh-accent);
}

.pckh-copy {
	grid-column: 1 / -1;
	margin: 24px 0 0;
	padding-top: 22px;
	border-top: 1px solid var(--pckh-border);
	text-align: center;
	font-size: 13px;
}

.pckh-copy a {
	display: inline;
	color: var(--pckh-accent);
}

@keyframes pckh-aurora {
	0% { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: .75; }
	100% { transform: translate3d(1.5%, 1%, 0) scale(1.05); opacity: 1; }
}

@keyframes pckh-grid-drift {
	0% { background-position: 0 0, 0 0; }
	100% { background-position: 180px 0, 142px 0; }
}

@keyframes pckh-scan-rotate {
	to { transform: rotate(360deg); }
}

@keyframes pckh-pulse {
	0%, 100% { opacity: .35; transform: scale(.95); }
	50% { opacity: .75; transform: scale(1.04); }
}

@keyframes pckh-float {
	0%, 100% { transform: perspective(1000px) rotateY(-4deg) rotateX(2deg) translateY(0); }
	50% { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-12px); }
}

@keyframes pckh-chip-glow {
	0%, 100% { box-shadow: 0 14px 40px rgba(0,0,0,.32), 0 0 0 rgba(0,216,232,0); }
	50% { box-shadow: 0 14px 40px rgba(0,0,0,.32), 0 0 24px rgba(0,216,232,.22); }
}

@keyframes pckh-circuit-flow {
	0% { transform: translate3d(-2%, -1%, 0) scale(1); opacity: .38; }
	50% { transform: translate3d(1.5%, 1%, 0) scale(1.04); opacity: .66; }
	100% { transform: translate3d(3%, -1.5%, 0) scale(1.02); opacity: .44; }
}

@keyframes pckh-trace-pulse {
	0%, 100% { opacity: .3; filter: drop-shadow(0 0 0 rgba(0,216,232,0)); }
	45% { opacity: .62; filter: drop-shadow(0 0 18px rgba(0,216,232,.28)); }
	70% { opacity: .48; filter: drop-shadow(0 0 10px rgba(55,214,122,.2)); }
}

@keyframes pckh-visual-breathe {
	0%, 100% { opacity: .62; transform: scale(1); }
	50% { opacity: .94; transform: scale(1.03); }
}

@keyframes pckh-glass-sweep {
	0%, 38% { transform: translateX(-52%) rotate(0deg); opacity: 0; }
	52% { opacity: .55; }
	72%, 100% { transform: translateX(52%) rotate(0deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}

	.pckh-button,
	.pckh-goal-card img,
	.pckh-ready-card,
	.pckh-hero:before,
	.pckh-hero:after,
	.pckh-hero-inner:before,
	.pckh-hero-visual,
	.pckh-hero-visual:before,
	.pckh-hero-visual:after,
	.pckh-chip,
	body.home:before,
	body.home:after,
	.pckh-hero-copy:after {
		animation: none;
		transition: none;
	}
}

@media (max-width: 1024px) {
	.pckh-header {
		grid-template-columns: 1fr auto;
	}

	.pckh-actions {
		gap: 8px;
	}

	.pckh-icon-link {
		width: 46px;
		padding: 0;
	}

	.pckh-icon-link span {
		position: absolute;
		width: 1px;
		height: 1px;
		overflow: hidden;
		clip: rect(0 0 0 0);
		white-space: nowrap;
	}

	.pckh-nav {
		order: 3;
		grid-column: 1 / -1;
		justify-content: flex-start;
		overflow-x: auto;
		padding-bottom: 10px;
	}

	.pckh-hero-inner {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.pckh-hero-visual {
		min-height: 360px;
		transform: none;
		animation: none;
	}

	.pckh-goals,
	.pckh-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.pckh-steps,
	.pckh-footer {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 680px) {
	.pckh-header {
		position: relative;
		padding: 12px 16px;
		gap: 12px;
	}

	.pckh-brand {
		font-size: 16px;
	}

	.pckh-build {
		min-height: 42px;
		padding: 0 14px;
	}

	.pckh-nav {
		gap: 18px;
		font-size: 14px;
	}

	.pckh-hero-inner,
	.pckh-section,
	.pckh-cta,
	.pckh-footer {
		width: min(100% - 28px, 1280px);
	}

	.pckh-hero-inner {
		padding: 56px 0 52px;
	}

	.pckh-hero h1 {
		font-size: 42px;
	}

	.pckh-lead,
	.pckh-section-lead,
	.pckh-cta p {
		font-size: 16px;
	}

	.pckh-actions,
	.pckh-button {
		width: 100%;
	}

	.pckh-hero-visual {
		min-height: 310px;
		border-radius: 18px;
	}

	.pckh-chip {
		font-size: 10px;
	}

	.pckh-chip strong {
		font-size: 12px;
	}

	.pckh-visual-panel {
		left: 14px;
		right: 14px;
		bottom: 14px;
		grid-template-columns: 1fr;
	}

	.pckh-offer-badge,
	.pckh-visual-panel strong {
		grid-row: auto;
		justify-self: start;
	}

	.pckh-visual-panel strong {
		font-size: 22px;
	}

	.pckh-goals,
	.pckh-products,
	.pckh-steps,
	.pckh-footer {
		grid-template-columns: 1fr;
	}

	.pckh-section {
		padding-top: 58px;
	}

	.pckh-section-head {
		display: block;
	}

	.pckh-product-card img {
		height: 210px;
	}

	.pckh-product-foot {
		align-items: stretch;
		flex-direction: column;
	}

	.pckh-footer {
		gap: 22px;
	}
}
