/* ============================================================
   Karo Test Mode tutorial - effect classes for the Zion Builder
   version of the page. Pure CSS (no JS): scroll-driven reveals
   where the browser supports them, animated ping rings, device
   frames, glow orbs. All classes are kt2- prefixed and inert
   unless used, so loading site-wide is safe.
   ============================================================ */

/* ---------- section shells (set as ZnSection css_class) ---------- */
.kt2-dark { color: #f2f5ff; }
.kt2-dark h1, .kt2-dark h2, .kt2-dark h3, .kt2-dark h4 { color: #f2f5ff !important; }
.kt2-dark p, .kt2-dark li { color: #aebbe6; }
.kt2-dark a { color: #69b6ff; }
.kt2-dark a:hover { color: #9ccdff; }
/* Backgrounds painted here because the builder's background option is
   theme-managed; the class always wins. Three alternating shades. */
.kt2-bg-a { background: #0a1128 !important; }
.kt2-bg-b { background: #0e1630 !important; }
.kt2-bg-c { background: #101a3d !important; }
/* Hero needs room under the transparent header (the builder's padding
   option is theme-managed too). */
.kt2-hero-sec { padding-top: 170px !important; }
/* Beat the theme's link color inside dark sections. */
.kt2-dark p a, .kt2-dark li a { color: #69b6ff !important; }
.kt2-dark p a:hover, .kt2-dark li a:hover { color: #9ccdff !important; }

/* Glow orbs via section pseudo-elements */
.kt2-orbs { position: relative; overflow: hidden; }
.kt2-orbs > .zn_section_size, .kt2-orbs > .container { position: relative; z-index: 2; }
.kt2-orbs::before, .kt2-orbs::after {
	content: ""; position: absolute; border-radius: 50%; filter: blur(64px);
	pointer-events: none; z-index: 1;
	animation: kt2-drift 14s ease-in-out infinite alternate;
}
.kt2-orbs::before { width: 480px; height: 480px; left: -140px; top: -120px; background: radial-gradient(circle, #2b4694 0%, transparent 70%); opacity: 0.55; }
.kt2-orbs::after { width: 380px; height: 380px; right: -120px; bottom: -100px; background: radial-gradient(circle, #3f7dff 0%, transparent 70%); opacity: 0.35; animation-delay: 3s; }
@keyframes kt2-drift {
	from { transform: translate3d(0, 0, 0) scale(1); }
	to { transform: translate3d(40px, 30px, 0) scale(1.12); }
}

/* ---------- scroll reveal (progressive enhancement) ---------- */
.kt2-reveal { opacity: 1; }
@supports (animation-timeline: view()) {
	.kt2-reveal {
		animation: kt2-in linear both;
		animation-timeline: view();
		animation-range: entry 0% entry 45%;
	}
	@keyframes kt2-in {
		from { opacity: 0; transform: translateY(30px); }
		to { opacity: 1; transform: none; }
	}
}

/* ---------- hero bits ---------- */
.kt2-hero-badge {
	display: inline-block; letter-spacing: 0.35em; font-size: 12px; font-weight: 700;
	color: #69b6ff; border: 1px solid rgba(105, 182, 255, 0.35);
	padding: 7px 16px 6px 20px; border-radius: 999px; margin-bottom: 22px;
	background: rgba(105, 182, 255, 0.07);
}
.kt2-hero-title { font-size: clamp(42px, 7vw, 76px); font-weight: 800; margin: 0 0 18px; line-height: 1.1; }
.kt2-hero-sub { font-size: clamp(17px, 2.2vw, 21px); color: #aebbe6; max-width: 640px; margin: 0 auto 34px; }
.kt2-pulse-icon { width: 92px; height: 46px; display: inline-block; vertical-align: middle; margin-right: 14px; }
.kt2-pulse-icon svg { width: 100%; height: 100%; overflow: visible; }
.kt2-pulse-line {
	fill: none; stroke: #69b6ff; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round;
	stroke-dasharray: 140; stroke-dashoffset: 140;
	animation: kt2-draw 2.4s ease-in-out infinite;
	filter: drop-shadow(0 0 8px rgba(105, 182, 255, 0.8));
}
@keyframes kt2-draw {
	0% { stroke-dashoffset: 140; opacity: 0.4; }
	45% { stroke-dashoffset: 0; opacity: 1; }
	75% { stroke-dashoffset: 0; opacity: 1; }
	100% { stroke-dashoffset: -140; opacity: 0.4; }
}
.kt2-chips { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.kt2-chip {
	display: inline-flex; align-items: center; gap: 8px;
	background: #1a244a; border: 1px solid #35478a;
	padding: 9px 17px; border-radius: 999px; font-size: 14px; color: #aebbe6;
	box-shadow: 0 6px 24px rgba(4, 10, 32, 0.45);
}
.kt2-dots { display: inline-flex; gap: 5px; }
.kt2-dots i { width: 5px; height: 5px; border-radius: 50%; background: #69b6ff; opacity: 0.25; animation: kt2-dots 1.4s infinite; }
.kt2-dots i:nth-child(2) { animation-delay: 0.2s; }
.kt2-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes kt2-dots { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

/* ---------- info cards row ---------- */
.kt2-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.kt2-card {
	background: #1a244a; border: 1px solid #35478a; border-radius: 18px; padding: 26px 22px;
	box-shadow: 0 10px 34px rgba(4, 10, 32, 0.45);
	transition: transform 0.35s ease, border-color 0.35s ease;
}
.kt2-card:hover { transform: translateY(-6px); border-color: #4d6dcc; }
.kt2-card h4 { font-size: 19px; margin: 12px 0 8px; }
.kt2-card p { color: #aebbe6; font-size: 15.5px; margin: 0; }
.kt2-card-emoji { font-size: 30px; display: inline-block; animation: kt2-float 5s ease-in-out infinite; }
@keyframes kt2-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- step layout ---------- */
.kt2-step-num {
	width: 52px; height: 52px; border-radius: 50%; margin-bottom: 16px;
	background: linear-gradient(135deg, #3f7dff, #69b6ff);
	display: flex; align-items: center; justify-content: center;
	font-size: 22px; font-weight: 800; color: #071026;
	box-shadow: 0 8px 26px rgba(63, 125, 255, 0.45);
}
.kt2-step-title { font-size: clamp(22px, 3vw, 28px); margin: 0 0 12px; font-weight: 700; }
.kt2-check { list-style: none; margin: 14px 0 0; padding: 0; }
.kt2-check li { position: relative; padding-left: 26px; color: #7d8cbd; font-size: 15px; margin-bottom: 7px; }
.kt2-check li::before {
	content: ""; position: absolute; left: 0; top: 7px; width: 14px; height: 8px;
	border-left: 2.5px solid #58e0a2; border-bottom: 2.5px solid #58e0a2;
	transform: rotate(-45deg) scale(0.9);
}

/* ---------- device frames (wrap an <img>) ---------- */
.kt2-shot { position: relative; display: block; margin: 0 auto; }
.kt2-shot img { display: block; width: 100%; height: auto; }
.kt2-shot-phone {
	max-width: 280px; border: 6px solid #232f5c; border-radius: 30px; overflow: hidden;
	background: #0c1226; box-shadow: 0 24px 60px rgba(3, 8, 26, 0.65);
	transition: transform 0.4s ease;
}
.kt2-shot-desktop {
	max-width: 430px; border: 1px solid #35478a; border-radius: 14px; overflow: hidden;
	background: #182348; padding-top: 22px; position: relative;
	box-shadow: 0 24px 60px rgba(3, 8, 26, 0.65);
	transition: transform 0.4s ease;
}
.kt2-shot-desktop::before {
	content: ""; position: absolute; top: 7px; left: 12px;
	width: 8px; height: 8px; border-radius: 50%;
	background: #ff6b6b; box-shadow: 14px 0 0 #f7c948, 28px 0 0 #58e0a2;
}
.kt2-shot:hover { transform: translateY(-6px); }

/* ---------- click-here ping ring ---------- */
.kt2-ping {
	position: absolute; z-index: 4; width: 54px; height: 54px; margin: -27px 0 0 -27px;
	border-radius: 50%; border: 3px solid #ffcc33; background: transparent;
	box-shadow: 0 0 14px rgba(255, 204, 51, 0.8), inset 0 0 10px rgba(255, 204, 51, 0.35);
	pointer-events: none;
}
.kt2-ping::before, .kt2-ping::after {
	content: ""; position: absolute; inset: -3px; border-radius: 50%;
	border: 3px solid rgba(255, 204, 51, 0.9);
	animation: kt2-ping 2s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}
.kt2-ping::after { animation-delay: 1s; }
@keyframes kt2-ping {
	0% { transform: scale(0.75); opacity: 1; }
	80%, 100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- how-it-works diagram ---------- */
.kt2-how { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.kt2-how-node {
	display: flex; flex-direction: column; align-items: center; gap: 6px;
	background: #1a244a; border: 1px solid #35478a; border-radius: 18px; padding: 18px 26px;
	color: #aebbe6; font-size: 13px; letter-spacing: 0.05em;
}
.kt2-how-node b { font-size: 26px; }
.kt2-arrow { display: inline-flex; gap: 6px; }
.kt2-arrow i { width: 7px; height: 7px; border-top: 2px solid #69b6ff; border-right: 2px solid #69b6ff; transform: rotate(45deg); opacity: 0.25; animation: kt2-dots 1.2s infinite; }
.kt2-arrow i:nth-child(2) { animation-delay: 0.15s; }
.kt2-arrow i:nth-child(3) { animation-delay: 0.3s; }

/* ---------- FAQ ---------- */
/* Centered via max-width so builder re-saves (which strip offset
   classes from the column) can't knock it off-center. */
.kt2-faq { max-width: 760px; margin-left: auto; margin-right: auto; }
.kt2-faq details { background: #1a244a; border: 1px solid #35478a; border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.kt2-faq summary {
	list-style: none; cursor: pointer; padding: 17px 52px 17px 22px; font-weight: 600; font-size: 16.5px;
	position: relative; color: #f2f5ff;
}
.kt2-faq summary::-webkit-details-marker { display: none; }
.kt2-faq summary::after {
	content: ""; position: absolute; right: 22px; top: 50%; width: 9px; height: 9px; margin-top: -7px;
	border-right: 2px solid #69b6ff; border-bottom: 2px solid #69b6ff;
	transform: rotate(45deg); transition: transform 0.3s ease;
}
.kt2-faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.kt2-faq details[open] summary { color: #69b6ff; }
.kt2-faq details p { margin: 0; padding: 0 22px 18px; color: #aebbe6 !important; font-size: 15.5px; }

/* ---------- CTA buttons ---------- */
.kt2-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.kt2-btn {
	display: inline-block; padding: 15px 34px; border-radius: 999px; font-size: 16.5px; font-weight: 700;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.kt2-btn-primary { background: linear-gradient(135deg, #3f7dff, #69b6ff); color: #071026 !important; box-shadow: 0 12px 34px rgba(63, 125, 255, 0.45); }
.kt2-btn-primary:hover { transform: translateY(-3px); }
.kt2-btn-ghost { border: 1.5px solid #35478a; color: #f2f5ff !important; background: rgba(26, 36, 74, 0.6); }
.kt2-btn-ghost:hover { transform: translateY(-3px); border-color: #69b6ff; }

/* ============================================================
   Interactive upgrades: parallax, tilt, spotlight, entrances.
   JS in zn_script_child.js drives the --kt2-* custom properties;
   without JS everything below degrades to the static look.
   ============================================================ */

/* ---------- hero entrance (staggered, runs once on load) ---------- */
.kt2-hero-badge, .kt2-hero-title, .kt2-hero-sub, .kt2-chips {
	animation: kt2-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.kt2-hero-title { animation-delay: 0.12s; }
.kt2-hero-sub { animation-delay: 0.26s; }
.kt2-chips { animation-delay: 0.4s; }
@keyframes kt2-rise {
	from { opacity: 0; transform: translateY(26px); }
	to { opacity: 1; transform: none; }
}

/* Gradient shimmer sweeping across the hero title */
.kt2-hero-title {
	background: linear-gradient(100deg, #f2f5ff 30%, #69b6ff 45%, #b7dcff 50%, #f2f5ff 65%);
	background-size: 250% 100%;
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: kt2-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both,
		kt2-shimmer 7s ease-in-out 1.2s infinite;
}
@keyframes kt2-shimmer {
	0%, 55% { background-position: 120% 0; }
	85%, 100% { background-position: -60% 0; }
}

/* ---------- scroll parallax (JS sets --kt2-par per section/shot) ---------- */
.kt2-orbs::before { translate: 0 calc(var(--kt2-par, 0) * 60px); }
.kt2-orbs::after { translate: 0 calc(var(--kt2-par, 0) * -80px); }
.kt2-shot { translate: 0 calc(var(--kt2-par, 0) * -26px); }

/* ---------- device-frame tilt + lift (JS sets --kt2-rx/--kt2-ry) ---------- */
.kt2-shot {
	transform: perspective(900px) rotateX(var(--kt2-rx, 0deg)) rotateY(var(--kt2-ry, 0deg));
	transition: transform 0.18s ease-out, scale 0.35s ease, box-shadow 0.35s ease;
}
.kt2-shot:hover {
	transform: perspective(900px) rotateX(var(--kt2-rx, 0deg)) rotateY(var(--kt2-ry, 0deg));
	scale: 1.025;
	box-shadow: 0 34px 80px rgba(3, 8, 26, 0.8), 0 0 0 1px rgba(105, 182, 255, 0.25);
}
.kt2-shot img { transition: scale 0.5s ease; }
.kt2-shot:hover img { scale: 1.04; }

/* Directional entrances: step text and screenshot slide in from their
   own side; cards, checklists, FAQ items and diagram nodes cascade. */
@supports (animation-timeline: view()) {
	.kt2-shot.kt2-reveal { animation-name: kt2-in-zoom; }
	@keyframes kt2-in-zoom {
		from { opacity: 0; transform: perspective(900px) translateY(40px) scale(0.92); }
		to { opacity: 1; transform: perspective(900px); }
	}

	.kt2-step-row [class*="col-md"]:first-child .kt2-reveal { animation-name: kt2-in-left; }
	.kt2-step-row [class*="col-md"]:last-child .kt2-reveal { animation-name: kt2-in-right; }
	@keyframes kt2-in-left { from { opacity: 0; transform: translateX(-64px); } to { opacity: 1; transform: none; } }
	@keyframes kt2-in-right { from { opacity: 0; transform: translateX(64px); } to { opacity: 1; transform: none; } }
	/* shots keep the perspective base so hover tilt still works after */
	.kt2-step-row [class*="col-md"]:first-child .kt2-shot.kt2-reveal { animation-name: kt2-shot-left; }
	.kt2-step-row [class*="col-md"]:last-child .kt2-shot.kt2-reveal { animation-name: kt2-shot-right; }
	@keyframes kt2-shot-left { from { opacity: 0; transform: perspective(900px) translateX(-70px) scale(0.94); } to { opacity: 1; transform: perspective(900px); } }
	@keyframes kt2-shot-right { from { opacity: 0; transform: perspective(900px) translateX(70px) scale(0.94); } to { opacity: 1; transform: perspective(900px); } }

	.kt2-card { animation: kt2-in-pop linear both; animation-timeline: view(); animation-range: entry 0% entry 45%; }
	.kt2-card:nth-child(3n+2) { animation-range: entry 8% entry 55%; }
	.kt2-card:nth-child(3n) { animation-range: entry 16% entry 65%; }
	@keyframes kt2-in-pop { from { opacity: 0; transform: translateY(34px) scale(0.94); } to { opacity: 1; transform: none; } }

	.kt2-check li { animation: kt2-in-left linear both; animation-timeline: view(); animation-range: entry 0% entry 35%; }
	.kt2-check li:nth-child(2) { animation-range: entry 8% entry 45%; }
	.kt2-check li:nth-child(3) { animation-range: entry 16% entry 55%; }

	.kt2-faq details { animation: kt2-in linear both; animation-timeline: view(); animation-range: entry 0% entry 40%; }

	.kt2-how-node, .kt2-arrow { animation: kt2-in-pop linear both; animation-timeline: view(); animation-range: entry 0% entry 45%; }
	.kt2-how-node:nth-child(3), .kt2-arrow:nth-child(2) { animation-range: entry 10% entry 55%; }
	.kt2-how-node:nth-child(5), .kt2-arrow:nth-child(4) { animation-range: entry 20% entry 65%; }
}

/* ambient movement */
.kt2-chips .kt2-chip { animation: kt2-float 6s ease-in-out infinite; }
.kt2-chips .kt2-chip:nth-child(3) { animation-delay: 1s; }
.kt2-chips .kt2-chip:nth-child(5) { animation-delay: 2s; }
.kt2-how-node b { animation: kt2-float 5s ease-in-out infinite; }
.kt2-how .kt2-how-node:nth-child(3) b { animation-delay: 0.7s; }
.kt2-how .kt2-how-node:nth-child(5) b { animation-delay: 1.4s; }
.kt2-btn-primary { animation: kt2-glow 3.5s ease-in-out infinite; }
@keyframes kt2-glow {
	0%, 100% { box-shadow: 0 12px 34px rgba(63, 125, 255, 0.45); }
	50% { box-shadow: 0 12px 48px rgba(63, 125, 255, 0.8); }
}

/* ---------- card tilt + cursor spotlight ---------- */
.kt2-card {
	position: relative; overflow: hidden;
	transform: perspective(800px) rotateX(var(--kt2-rx, 0deg)) rotateY(var(--kt2-ry, 0deg));
	transition: transform 0.18s ease-out, translate 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.kt2-card:hover {
	transform: perspective(800px) rotateX(var(--kt2-rx, 0deg)) rotateY(var(--kt2-ry, 0deg));
	translate: 0 -6px;
	border-color: #4d6dcc;
	box-shadow: 0 18px 48px rgba(4, 10, 32, 0.65);
}
.kt2-card::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
	background: radial-gradient(220px circle at var(--kt2-mx, 50%) var(--kt2-my, 50%),
		rgba(105, 182, 255, 0.16), transparent 65%);
	opacity: 0; transition: opacity 0.35s ease;
}
.kt2-card:hover::after { opacity: 1; }
.kt2-card:hover .kt2-card-emoji { scale: 1.25; rotate: -8deg; }
.kt2-card-emoji { transition: scale 0.3s cubic-bezier(0.3, 1.6, 0.4, 1), rotate 0.3s ease; }

/* ---------- chips + how-nodes hover ---------- */
.kt2-chip { transition: translate 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
/* chips that are links keep the chip look, not the theme link color */
.kt2-dark a.kt2-chip, .kt2-dark a.kt2-chip:hover { color: #c2d0f2 !important; }
a.kt2-chip { cursor: pointer; }
.kt2-chip:hover { translate: 0 -4px; border-color: #69b6ff; box-shadow: 0 10px 30px rgba(63, 125, 255, 0.3); }
.kt2-how-node { transition: translate 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease; }
.kt2-how-node:hover { translate: 0 -5px; border-color: #69b6ff; box-shadow: 0 14px 36px rgba(63, 125, 255, 0.25); }
.kt2-how-node b { display: inline-block; transition: scale 0.3s cubic-bezier(0.3, 1.6, 0.4, 1); }
.kt2-how-node:hover b { scale: 1.3; }

/* ---------- step number glow ring ---------- */
.kt2-step-num { position: relative; }
.kt2-step-num::after {
	content: ""; position: absolute; inset: -6px; border-radius: 50%;
	border: 2px solid rgba(105, 182, 255, 0.5);
	animation: kt2-ping 2.6s cubic-bezier(0.2, 0.6, 0.3, 1) infinite;
}

/* ---------- button shine sweep ---------- */
.kt2-btn { position: relative; overflow: hidden; }
.kt2-btn::before {
	content: ""; position: absolute; top: 0; bottom: 0; left: -80%; width: 50%;
	background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
	transform: skewX(-20deg); transition: left 0.55s ease;
}
.kt2-btn:hover::before { left: 130%; }
.kt2-btn-primary:hover { box-shadow: 0 16px 44px rgba(63, 125, 255, 0.65); }

/* ---------- FAQ open/close polish ---------- */
.kt2-faq details { transition: border-color 0.3s ease, background 0.3s ease; }
.kt2-faq details:hover { border-color: #4d6dcc; }
.kt2-faq details[open] { background: #1e2a56; border-color: #4d6dcc; }
.kt2-faq details[open] p { animation: kt2-faq-open 0.4s ease both; }
@keyframes kt2-faq-open {
	from { opacity: 0; translate: 0 -8px; }
	to { opacity: 1; translate: 0 0; }
}

/* ---------- scroll progress bar (element injected by JS) ---------- */
.kt2-progress {
	position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 9999;
	background: linear-gradient(90deg, #3f7dff, #69b6ff, #58e0a2);
	transform-origin: 0 50%; transform: scaleX(var(--kt2-scroll, 0));
	box-shadow: 0 0 12px rgba(105, 182, 255, 0.7);
	pointer-events: none;
}

/* ---------- JS reveal fallback (no native scroll-timeline) ---------- */
html.kt2-js .kt2-reveal {
	opacity: 0; transform: translateY(30px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html.kt2-js .kt2-shot.kt2-reveal { transform: translateY(40px) scale(0.94); }
html.kt2-js .kt2-step-row [class*="col-md"]:first-child .kt2-reveal { transform: translateX(-64px); }
html.kt2-js .kt2-step-row [class*="col-md"]:last-child .kt2-reveal { transform: translateX(64px); }
html.kt2-js .kt2-reveal.kt2-inview { opacity: 1; transform: none; }
html.kt2-js .kt2-shot.kt2-reveal.kt2-inview,
html.kt2-js .kt2-step-row [class*="col-md"] .kt2-shot.kt2-reveal.kt2-inview {
	transform: perspective(900px) rotateX(var(--kt2-rx, 0deg)) rotateY(var(--kt2-ry, 0deg));
}
html.kt2-js .kt2-card, html.kt2-js .kt2-faq details, html.kt2-js .kt2-how-node, html.kt2-js .kt2-arrow {
	opacity: 0; translate: 0 30px;
	transition: opacity 0.6s ease, translate 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html.kt2-js .kt2-check li {
	opacity: 0; translate: -24px 0;
	transition: opacity 0.5s ease, translate 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
html.kt2-js .kt2-card.kt2-inview, html.kt2-js .kt2-faq details.kt2-inview,
html.kt2-js .kt2-how-node.kt2-inview, html.kt2-js .kt2-arrow.kt2-inview,
html.kt2-js .kt2-check li.kt2-inview { opacity: 1; translate: 0 0; }

/* ---------- hero with brand key-visual backdrop ----------
   Section class kt2-hero-art. The artwork paints on ::before with a
   slow Ken Burns drift; ::after darkens the center band for the text.
   JS injects .kt2-star-field (twinkles) and .kt2-pkt-stage (particle
   stream riding the artwork's light swoosh, px paths in a fixed
   1920x820 stage kept centered). */
.kt2-hero-art {
	position: relative; overflow: hidden; background: #060b22 !important;
	padding-top: 150px !important; padding-bottom: 120px !important;
}
/* Bottom-anchored: the scene (controller, phone, swoosh) always stays
   in frame and any excess, including the baked-in logo band, crops
   away at the top. */
.kt2-hero-art::before {
	content: ""; position: absolute; left: -2%; right: -2%; top: -2%; bottom: 0; z-index: 1;
	background: url(../images/testmode/hero-bg.jpg) center bottom / cover no-repeat;
	animation: kt2-kenburns 18s ease-in-out infinite alternate;
}
@keyframes kt2-kenburns {
	from { transform: scale(1); }
	to { transform: scale(1.05); }
}
.kt2-hero-art::after {
	content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
	background:
		linear-gradient(180deg, rgba(6, 11, 34, 0.9) 0%, rgba(6, 11, 34, 0) 170px),
		radial-gradient(ellipse 46% 42% at 50% 56%, rgba(4, 8, 24, 0.55) 0%, rgba(4, 8, 24, 0.28) 55%, transparent 100%);
}
/* Glowing brand icon; screen blend sinks its dark background into
   the artwork so only the mark and glow remain. */
.kt2-hero-mark {
	width: 300px; max-width: 70vw; height: auto; display: inline-block; margin-bottom: 0;
	mix-blend-mode: screen;
	animation: kt2-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both, kt2-float 6s ease-in-out 1s infinite;
}
.kt2-hero-wordmark {
	font-size: 26px; font-weight: 600; letter-spacing: 0.55em; padding-left: 0.55em;
	color: #d5def3; margin: -16px 0 22px;
	text-shadow: 0 2px 18px rgba(2, 6, 20, 0.9);
	animation: kt2-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.06s both;
}
.kt2-hero-art > .zn_section_size, .kt2-hero-art > .container { position: relative; z-index: 5; }
.kt2-star-field { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.kt2-star-field i {
	position: absolute; border-radius: 50%; background: #b9dcff;
	box-shadow: 0 0 5px 1px rgba(150, 200, 255, 0.6);
	opacity: 0; animation: kt2-tw 6s ease-in-out infinite;
}
@keyframes kt2-tw { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.8; } }
.kt2-pkt-stage {
	position: absolute; left: 50%; bottom: 0; width: 1920px; height: 820px;
	transform: translateX(-50%); z-index: 4; pointer-events: none;
}
.kt2-pkt { position: absolute; border-radius: 50%; background: #9fd9ff; animation: kt2-run linear infinite; }
@keyframes kt2-run {
	0% { offset-distance: 0%; opacity: 0; }
	8% { opacity: var(--kt2-o, 0.5); }
	92% { opacity: var(--kt2-o, 0.5); }
	100% { offset-distance: 100%; opacity: 0; }
}
/* The big in-art logo owns the branding, so the title goes back to
   solid white with a glow instead of the shimmer gradient. */
.kt2-hero-art .kt2-hero-title {
	background: none; -webkit-text-fill-color: #f2f5ff; color: #f2f5ff !important;
	text-shadow: 0 6px 40px rgba(2, 6, 20, 0.9), 0 0 70px rgba(63, 125, 255, 0.35);
	animation: kt2-rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.12s both;
}
.kt2-hero-art .kt2-hero-sub { color: #c6d4f7; text-shadow: 0 3px 22px rgba(2, 6, 20, 0.95); }
.kt2-hero-art .kt2-hero-badge { background: rgba(10, 17, 40, 0.55); backdrop-filter: blur(3px); }
.kt2-hero-art .kt2-chip { background: rgba(19, 28, 60, 0.72); backdrop-filter: blur(3px); }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
	.kt2-cards { grid-template-columns: 1fr; }
	.kt2-hero-art { padding-top: 240px !important; padding-bottom: 120px !important; }
	.kt2-pkt-stage { display: none; }
}

@media (prefers-reduced-motion: reduce) {
	.kt2-orbs::before, .kt2-orbs::after, .kt2-pulse-line, .kt2-dots i,
	.kt2-ping::before, .kt2-ping::after, .kt2-card-emoji, .kt2-arrow i,
	.kt2-hero-badge, .kt2-hero-title, .kt2-hero-sub, .kt2-chips,
	.kt2-step-num::after, .kt2-faq details[open] p,
	.kt2-hero-art::before, .kt2-star-field i, .kt2-pkt,
	.kt2-card, .kt2-check li, .kt2-faq details, .kt2-how-node, .kt2-arrow,
	.kt2-chips .kt2-chip, .kt2-how-node b, .kt2-btn-primary { animation: none !important; }
	.kt2-star-field i { opacity: 0.3; }
	.kt2-pkt { display: none; }
	.kt2-reveal { animation: none !important; opacity: 1; }
	.kt2-orbs::before, .kt2-orbs::after, .kt2-shot { translate: none !important; }
	.kt2-shot, .kt2-card { transform: none !important; }
	html.kt2-js .kt2-reveal { opacity: 1; transform: none; transition: none; }
}
