:root {
	--bg0: #0b0c10;
	--bg1: #12141c;
	--card: rgba(255, 255, 255, 0.045);
	--border: rgba(255, 255, 255, 0.09);
	--text: #e8eaef;
	--muted: #8b93a7;
	--accent: #6c8cff;
	--accent2: #9d7dff;
	--accent-soft: rgba(108, 140, 255, 0.14);
	--err: #ff6b7a;
	--radius: 16px;
	--radius-lg: 20px;
	--font: "Segoe UI", system-ui, -apple-system, sans-serif;
	--mono: ui-monospace, "Cascadia Code", Consolas, monospace;
	--shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.35);
	--shadow-glow: 0 0 0 1px rgba(108, 140, 255, 0.25), 0 20px 50px rgba(108, 140, 255, 0.12);
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-height: 100vh;
	font-family: var(--font);
	background:
		radial-gradient(ellipse 120% 80% at 50% -30%, rgba(108, 140, 255, 0.12), transparent 55%),
		linear-gradient(165deg, var(--bg0) 0%, #14172a 42%, var(--bg1) 100%);
	color: var(--text);
	line-height: 1.58;
	position: relative;
	overflow-x: hidden;
}

/* Extra-soft layer only: does not replace body gradients; reads as ambient motion through the grid */
body::before {
	content: "";
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background:
		radial-gradient(ellipse 85% 55% at 18% 88%, rgba(108, 140, 255, 0.065), transparent 58%),
		radial-gradient(ellipse 75% 45% at 88% 12%, rgba(157, 125, 255, 0.045), transparent 52%);
	opacity: 0.55;
	animation: bgAirBloom 20s ease-in-out infinite alternate;
}

@keyframes bgAirBloom {
	0% {
		opacity: 0.42;
		transform: translate3d(0, 0, 0) scale(1);
	}
	100% {
		opacity: 0.72;
		transform: translate3d(-2.2%, 1.4%, 0) scale(1.028);
	}
}

/* Decorative bubbles — under grid; all pages using header (home, dashboard, auth) */
.bg-bubbles {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	overflow: hidden;
	-webkit-mask-image: radial-gradient(ellipse 105% 95% at 50% 42%, black 4%, rgba(0, 0, 0, 0.92) 35%, transparent 82%);
	mask-image: radial-gradient(ellipse 105% 95% at 50% 42%, black 4%, rgba(0, 0, 0, 0.92) 35%, transparent 82%);
}

.bg-bubble {
	position: absolute;
	left: var(--bb-left, 50%);
	bottom: var(--bb-bot, -12%);
	width: var(--bb-sz, 18px);
	height: var(--bb-sz, 18px);
	margin-left: calc(var(--bb-sz) / -2);
	border-radius: 50%;
	pointer-events: none;
	opacity: 0;
	will-change: transform, opacity;
	border: 1.5px solid rgba(108, 140, 255, 0.55);
	background:
		radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.65) 0%, rgba(255, 255, 255, 0.12) 18%, transparent 42%),
		radial-gradient(circle at 72% 78%, rgba(108, 140, 255, 0.35) 0%, transparent 55%);
	box-shadow:
		0 0 18px rgba(108, 140, 255, 0.35),
		0 0 36px rgba(108, 140, 255, 0.12),
		inset 0 0 12px rgba(255, 255, 255, 0.14);
	animation: bgBubbleRise var(--bb-dur, 34s) linear infinite;
	animation-delay: var(--bb-delay, 0s);
}

.bg-bubble:nth-child(even) {
	border-color: rgba(157, 125, 255, 0.52);
	box-shadow:
		0 0 20px rgba(157, 125, 255, 0.32),
		0 0 42px rgba(157, 125, 255, 0.14),
		inset 0 0 12px rgba(255, 255, 255, 0.1);
}

@keyframes bgBubbleRise {
	0% {
		transform: translate3d(0, 28vh, 0) scale(0.78);
		opacity: 0;
	}
	3% {
		opacity: 0.95;
	}
	90% {
		opacity: 0.7;
	}
	100% {
		transform: translate3d(var(--bb-dx, 0vw), -140vh, 0) scale(1.14);
		opacity: 0;
	}
}

.bg-bubble:nth-child(1) {
	--bb-left: 6%;
	--bb-sz: 22px;
	--bb-bot: -14%;
	--bb-dur: 30s;
	--bb-delay: 0s;
	--bb-dx: 2.2vw;
}

.bg-bubble:nth-child(2) {
	--bb-left: 13%;
	--bb-sz: 14px;
	--bb-bot: -8%;
	--bb-dur: 38s;
	--bb-delay: -5s;
	--bb-dx: -1.8vw;
}

.bg-bubble:nth-child(3) {
	--bb-left: 21%;
	--bb-sz: 28px;
	--bb-bot: -18%;
	--bb-dur: 26s;
	--bb-delay: -11s;
	--bb-dx: 3.5vw;
}

.bg-bubble:nth-child(4) {
	--bb-left: 30%;
	--bb-sz: 12px;
	--bb-bot: -6%;
	--bb-dur: 42s;
	--bb-delay: -2s;
	--bb-dx: -2.8vw;
}

.bg-bubble:nth-child(5) {
	--bb-left: 38%;
	--bb-sz: 20px;
	--bb-bot: -12%;
	--bb-dur: 33s;
	--bb-delay: -14s;
	--bb-dx: 1.2vw;
}

.bg-bubble:nth-child(6) {
	--bb-left: 46%;
	--bb-sz: 16px;
	--bb-bot: -10%;
	--bb-dur: 36s;
	--bb-delay: -7s;
	--bb-dx: -3.2vw;
}

.bg-bubble:nth-child(7) {
	--bb-left: 54%;
	--bb-sz: 24px;
	--bb-bot: -16%;
	--bb-dur: 29s;
	--bb-delay: -19s;
	--bb-dx: 2.6vw;
}

.bg-bubble:nth-child(8) {
	--bb-left: 62%;
	--bb-sz: 11px;
	--bb-bot: -5%;
	--bb-dur: 44s;
	--bb-delay: -1s;
	--bb-dx: -1.4vw;
}

.bg-bubble:nth-child(9) {
	--bb-left: 70%;
	--bb-sz: 18px;
	--bb-bot: -11%;
	--bb-dur: 31s;
	--bb-delay: -9s;
	--bb-dx: 3vw;
}

.bg-bubble:nth-child(10) {
	--bb-left: 78%;
	--bb-sz: 26px;
	--bb-bot: -15%;
	--bb-dur: 35s;
	--bb-delay: -16s;
	--bb-dx: -2.4vw;
}

.bg-bubble:nth-child(11) {
	--bb-left: 86%;
	--bb-sz: 15px;
	--bb-bot: -9%;
	--bb-dur: 40s;
	--bb-delay: -4s;
	--bb-dx: 1.9vw;
}

.bg-bubble:nth-child(12) {
	--bb-left: 11%;
	--bb-sz: 10px;
	--bb-bot: -4%;
	--bb-dur: 45s;
	--bb-delay: -22s;
	--bb-dx: -2vw;
}

.bg-bubble:nth-child(13) {
	--bb-left: 92%;
	--bb-sz: 19px;
	--bb-bot: -13%;
	--bb-dur: 32s;
	--bb-delay: -12s;
	--bb-dx: -3.6vw;
}

.bg-bubble:nth-child(14) {
	--bb-left: 50%;
	--bb-sz: 17px;
	--bb-bot: -7%;
	--bb-dur: 37s;
	--bb-delay: -8s;
	--bb-dx: 0.5vw;
}

.bg-bubble:nth-child(15) {
	--bb-left: 17%;
	--bb-sz: 13px;
	--bb-bot: -5%;
	--bb-dur: 41s;
	--bb-delay: -20s;
	--bb-dx: 2.8vw;
}

.bg-bubble:nth-child(16) {
	--bb-left: 95%;
	--bb-sz: 21px;
	--bb-bot: -17%;
	--bb-dur: 28s;
	--bb-delay: -3s;
	--bb-dx: -1.1vw;
}

.bg-bubble:nth-child(17) {
	--bb-left: 3%;
	--bb-sz: 9px;
	--bb-bot: -3%;
	--bb-dur: 48s;
	--bb-delay: -25s;
	--bb-dx: 1.4vw;
}

.bg-bubble:nth-child(18) {
	--bb-left: 42%;
	--bb-sz: 23px;
	--bb-bot: -20%;
	--bb-dur: 27s;
	--bb-delay: -17s;
	--bb-dx: -3.8vw;
}

.bg-bubble:nth-child(19) {
	--bb-left: 58%;
	--bb-sz: 12px;
	--bb-bot: -4%;
	--bb-dur: 43s;
	--bb-delay: -6s;
	--bb-dx: 2.1vw;
}

.bg-bubble:nth-child(20) {
	--bb-left: 84%;
	--bb-sz: 18px;
	--bb-bot: -11%;
	--bb-dur: 34s;
	--bb-delay: -13s;
	--bb-dx: -0.8vw;
}

.bg-grid {
	pointer-events: none;
	position: fixed;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
	background-position: 0 0, 0 0;
	mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black, transparent);
	opacity: 0.6;
	animation: bgGridDrift 72s linear infinite;
}

@keyframes bgGridDrift {
	0% {
		background-position: 0 0, 0 0;
	}
	100% {
		background-position: 72px 54px, -54px 72px;
	}
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(14px) saturate(1.2);
	background: rgba(11, 12, 16, 0.82);
	border-bottom: 1px solid var(--border);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.site-header .inner,
.site-footer .inner,
.main-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 1.35rem;
}

.site-header .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 64px;
}

.logo {
	display: inline-flex;
	align-items: center;
	gap: 0.55rem;
	font-weight: 700;
	color: var(--text);
	text-decoration: none;
	letter-spacing: -0.02em;
}

.logo-name {
	display: block;
	font-size: 1.08rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.15;
	white-space: nowrap;
	background: linear-gradient(95deg, #fff 0%, #d0d8ff 50%, #fff 100%);
	background-size: 160% 100%;
	background-position: 0% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: logoSheen 9s ease-in-out infinite;
}

@keyframes logoSheen {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

.logo-mark {
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	box-shadow: 0 0 18px rgba(108, 140, 255, 0.55);
	animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 18px rgba(108, 140, 255, 0.55);
	}
	50% {
		opacity: 0.88;
		transform: scale(1.06);
		box-shadow: 0 0 26px rgba(157, 125, 255, 0.45);
	}
}

.nav {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	flex-wrap: wrap;
}

.nav a {
	color: var(--muted);
	text-decoration: none;
	padding: 0.45rem 0.75rem;
	border-radius: 8px;
	transition: color 0.2s, background 0.2s, transform 0.15s;
}

.nav a:hover {
	color: var(--text);
	background: rgba(255, 255, 255, 0.06);
	transform: translateY(-1px);
}

.nav .btn-nav {
	background: linear-gradient(135deg, var(--accent), #4a62d8);
	color: #fff !important;
	font-weight: 600;
}

.nav .btn-nav:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 24px rgba(108, 140, 255, 0.35);
}

.main-wrap {
	padding-bottom: 4rem;
	padding-top: 1.5rem;
}

.flash {
	background: rgba(108, 140, 255, 0.12);
	border: 1px solid rgba(108, 140, 255, 0.35);
	color: #c9d4ff;
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	margin-bottom: 1.25rem;
}

.hero {
	padding: 2.75rem 0 2.25rem;
	text-align: center;
}

.hero-eyebrow {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.22em;
	color: #9aa6c4;
	margin: 0 0 1rem;
	font-weight: 600;
}

.hero h1 {
	font-size: clamp(1.85rem, 4.2vw, 2.65rem);
	font-weight: 700;
	letter-spacing: -0.035em;
	line-height: 1.18;
	margin: 0 0 1.15rem;
	max-width: 920px;
	margin-left: auto;
	margin-right: auto;
	background: linear-gradient(100deg, #fff 0%, #d4dcff 40%, #a8b8ff 55%, #d4dcff 75%, #fff 100%);
	background-size: 185% 100%;
	background-position: 0% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation:
		heroTitleSheen 6.5s ease-in-out infinite,
		heroTitleLift 4.2s ease-in-out infinite alternate;
}

@keyframes heroTitleSheen {
	0%,
	100% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
}

@keyframes heroTitleLift {
	0% {
		transform: translateY(-2px);
	}
	100% {
		transform: translateY(2px);
	}
}

.lead {
	max-width: 640px;
	margin: 0 auto 1.75rem;
	color: var(--muted);
	font-size: 1.05rem;
}

.lead-wide {
	max-width: 820px;
	font-size: 1.08rem;
	line-height: 1.65;
	color: #a4adc4;
}

.trust-strip {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.65rem 1.5rem;
	margin: 0 auto 2.5rem;
	max-width: 900px;
	padding: 1rem 1.25rem;
	border-radius: var(--radius-lg);
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid var(--border);
	box-shadow: var(--shadow-soft);
	animation: trustStripGlow 5.5s ease-in-out infinite alternate;
}

@keyframes trustStripGlow {
	0% {
		border-color: rgba(255, 255, 255, 0.09);
		box-shadow: var(--shadow-soft);
	}
	100% {
		border-color: rgba(108, 140, 255, 0.22);
		box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35), 0 0 36px rgba(108, 140, 255, 0.08);
	}
}

.trust-item {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.82rem;
	color: #9aa4bc;
}

.trust-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	box-shadow: 0 0 10px rgba(108, 140, 255, 0.5);
	flex-shrink: 0;
	animation: trustPulse 2.2s ease-in-out infinite;
}

.trust-item:nth-child(1) .trust-dot {
	animation-delay: 0s;
}

.trust-item:nth-child(2) .trust-dot {
	animation-delay: 0.35s;
}

.trust-item:nth-child(3) .trust-dot {
	animation-delay: 0.7s;
}

@keyframes trustPulse {
	0%,
	100% {
		opacity: 1;
		transform: scale(1);
		box-shadow: 0 0 10px rgba(108, 140, 255, 0.55);
	}
	50% {
		opacity: 0.82;
		transform: scale(1.22);
		box-shadow: 0 0 18px rgba(157, 125, 255, 0.55);
	}
}

.section-heading {
	font-size: 1.35rem;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin: 0 0 1rem;
	color: #f0f2fa;
}

.section-heading-center {
	text-align: center;
	margin-bottom: 0.5rem;
}

.prose-block {
	max-width: 760px;
	margin: 0 auto 2.75rem;
	padding: 0 0.25rem;
}

/* Sharp-corner framed panel (chamfered clip) + justified body copy */
.prose-block--workflow {
	max-width: 820px;
	margin: 0 auto 3rem;
	padding: 0;
	border: none;
	background: transparent;
	filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.42));
}

.prose-block--workflow__inner {
	position: relative;
	padding: 1.65rem 1.75rem 1.55rem;
	background:
		linear-gradient(155deg, rgba(34, 40, 62, 0.97) 0%, rgba(16, 18, 30, 0.99) 48%, rgba(22, 26, 44, 0.98) 100%);
	border: 1px solid rgba(108, 140, 255, 0.32);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.05) inset,
		0 0 40px rgba(108, 140, 255, 0.06);
	clip-path: polygon(
		16px 0,
		calc(100% - 16px) 0,
		100% 16px,
		100% calc(100% - 16px),
		calc(100% - 16px) 100%,
		16px 100%,
		0 calc(100% - 16px),
		0 16px
	);
}

.prose-block--workflow .section-heading {
	margin-bottom: 1.05rem;
	background: linear-gradient(100deg, #fff 0%, #d4dcff 55%, #a8b8ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.prose-block--workflow .prose {
	margin: 0 0 1rem;
	color: #aeb6d4;
	font-size: 0.98rem;
	line-height: 1.72;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.prose-block--workflow .prose:last-child {
	margin-bottom: 0;
}

/* Closing pitch — framed panel (slightly tighter chamfer than workflow) */
.prose-block--why {
	max-width: 820px;
	margin: 0 auto 2rem;
	padding: 0;
	background: transparent;
	border: none;
	filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.38));
}

.prose-block--why__inner {
	padding: 1.45rem 1.65rem 1.35rem;
	background:
		linear-gradient(168deg, rgba(32, 28, 48, 0.96) 0%, rgba(14, 16, 26, 0.99) 52%, rgba(22, 20, 40, 0.97) 100%);
	border: 1px solid rgba(157, 125, 255, 0.26);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 0 36px rgba(157, 125, 255, 0.07);
	clip-path: polygon(
		12px 0,
		calc(100% - 12px) 0,
		100% 12px,
		100% calc(100% - 12px),
		calc(100% - 12px) 100%,
		12px 100%,
		0 calc(100% - 12px),
		0 12px
	);
}

.prose-block--why .section-heading {
	margin-bottom: 0.95rem;
	background: linear-gradient(98deg, #fff 0%, #e8e0ff 50%, #c4b8ff 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.prose-block--why .prose {
	margin: 0;
	color: #b4bcd8;
	line-height: 1.72;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	-webkit-hyphens: auto;
}

.prose-block--tight {
	margin-bottom: 2rem;
}

.prose {
	margin: 0 0 1rem;
	color: #a4adc4;
	font-size: 0.98rem;
	line-height: 1.68;
}

.pricing-wrap {
	margin: 0 auto 3rem;
	padding: 0 0.25rem;
}

.pricing-lead {
	text-align: center;
	max-width: 560px;
	margin: 0 auto 1.75rem;
	color: var(--muted);
	font-size: 0.98rem;
	line-height: 1.6;
}

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
	gap: 1.25rem;
	align-items: stretch;
}

.price-card {
	position: relative;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 1.65rem 1.5rem 1.5rem;
	display: flex;
	flex-direction: column;
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s ease;
}

.price-card:hover {
	transform: translateY(-4px);
	border-color: rgba(108, 140, 255, 0.28);
	box-shadow: var(--shadow-glow);
}

.price-card--featured {
	border-color: rgba(108, 140, 255, 0.45);
	background: linear-gradient(165deg, rgba(108, 140, 255, 0.12), rgba(20, 24, 40, 0.95));
	box-shadow: var(--shadow-glow);
}

.price-badge {
	display: inline-block;
	align-self: flex-start;
	font-size: 0.68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	padding: 0.35rem 0.65rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	color: #dce2f5;
	margin-bottom: 0.75rem;
}

.price-badge--accent {
	background: linear-gradient(135deg, var(--accent), #4f6fff);
	color: #fff;
}

.price-label {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	color: #c5cce6;
	font-weight: 600;
}

.price-amount {
	font-size: 2.1rem;
	font-weight: 800;
	letter-spacing: -0.03em;
	margin: 0 0 0.65rem;
	color: #fff;
}

.price-period {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--muted);
	margin-left: 0.2rem;
}

.price-note {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	color: #9aa4bc;
	line-height: 1.55;
	flex-grow: 0;
}

.price-list {
	margin: 0 0 1.25rem;
	padding-left: 1.1rem;
	color: #b4bdd9;
	font-size: 0.88rem;
	line-height: 1.55;
	flex-grow: 1;
}

.price-list li {
	margin-bottom: 0.4rem;
}

.btn-block {
	width: 100%;
	margin-top: auto;
}

.panel-intro {
	margin: 0 0 1.35rem;
	color: #a4adc4;
	font-size: 0.95rem;
	line-height: 1.65;
	max-width: 42rem;
}

.quota-banner {
	display: flex;
	gap: 0.85rem;
	align-items: flex-start;
	padding: 1rem 1.1rem;
	border-radius: var(--radius);
	background: var(--accent-soft);
	border: 1px solid rgba(108, 140, 255, 0.35);
	color: #d8def8;
	font-size: 0.9rem;
	line-height: 1.5;
	margin-bottom: 1.25rem;
}

.quota-banner--paid {
	background: rgba(80, 200, 160, 0.1);
	border-color: rgba(80, 200, 160, 0.35);
	color: #b8ebd9;
}

.quota-icon {
	width: 10px;
	height: 10px;
	margin-top: 0.35rem;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--accent), var(--accent2));
	flex-shrink: 0;
	box-shadow: 0 0 12px rgba(108, 140, 255, 0.45);
}

.quota-icon--paid {
	background: linear-gradient(135deg, #50c8a0, #3aa884);
	box-shadow: 0 0 12px rgba(80, 200, 160, 0.35);
}

.hero-actions {
	display: flex;
	gap: 0.75rem;
	justify-content: center;
	flex-wrap: wrap;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.65rem 1.25rem;
	border-radius: 10px;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid transparent;
	cursor: pointer;
	font-size: 1rem;
	font-family: inherit;
	transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
}

.btn.primary {
	background: linear-gradient(135deg, var(--accent), #4f6fff);
	color: #fff;
	border-color: rgba(255, 255, 255, 0.12);
}

.btn.primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 32px rgba(108, 140, 255, 0.35);
}

.btn.glow {
	animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
	0%,
	100% {
		box-shadow: 0 0 0 0 rgba(108, 140, 255, 0);
	}
	50% {
		box-shadow: 0 0 36px 8px rgba(108, 140, 255, 0.38), 0 0 52px 2px rgba(157, 125, 255, 0.15);
	}
}

.btn.ghost {
	background: rgba(255, 255, 255, 0.06);
	color: var(--text);
	border-color: var(--border);
}

.btn.ghost:hover {
	background: rgba(255, 255, 255, 0.1);
}

.cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1rem;
	margin-top: 1rem;
}

.card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.35rem;
	backdrop-filter: blur(8px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
	transition: transform 0.28s ease, box-shadow 0.32s ease, border-color 0.25s ease;
}

.card:hover {
	transform: translateY(-2px);
	border-color: rgba(108, 140, 255, 0.18);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.card h2 {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
}

.card p {
	margin: 0;
	color: var(--muted);
	font-size: 0.95rem;
}

.card code {
	font-family: var(--mono);
	font-size: 0.82rem;
	background: rgba(0, 0, 0, 0.35);
	padding: 0.1rem 0.35rem;
	border-radius: 4px;
}

.panel {
	max-width: 520px;
	margin: 0 auto;
	background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
	border: 1px solid var(--border);
	border-radius: var(--radius-lg);
	padding: 2rem 2.1rem;
	backdrop-filter: blur(12px);
	box-shadow: var(--shadow-soft);
	transition: transform 0.3s ease, box-shadow 0.35s ease, border-color 0.25s ease;
}

.panel:hover {
	transform: translateY(-2px);
	border-color: rgba(108, 140, 255, 0.16);
	box-shadow: 0 20px 48px rgba(0, 0, 0, 0.3);
}

.panel h1 {
	margin: 0 0 1rem;
	font-size: 1.5rem;
}

/* Match homepage content rail (.main-wrap max-width) */
.dashboard {
	max-width: 1120px;
	padding-bottom: 1.5rem;
}

/* Dashboard: saved runs — modest gap under workspace card (not too tight / not huge) */
.run-history {
	max-width: 1120px;
	margin: 1.05rem auto 3rem;
	padding: 0 0.25rem;
}

.run-history__title {
	font-size: 1.2rem;
	font-weight: 700;
	margin: 0 0 0.45rem;
	color: #f0f2fa;
	letter-spacing: -0.02em;
}

.run-history__lead {
	margin: 0 0 0.75rem;
	max-width: 52rem;
	line-height: 1.55;
}

.run-history__empty {
	margin: 0.35rem 0 0;
}

.run-history__list {
	list-style: none;
	margin: 0 0 1.35rem;
	padding: 0;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.65rem;
}

.run-history__item {
	display: contents;
}

.run-history__seed {
	font: inherit;
	font-weight: 600;
	color: #e8ecfa;
	background: rgba(108, 140, 255, 0.12);
	border: 1px solid rgba(108, 140, 255, 0.35);
	border-radius: 8px;
	padding: 0.4rem 0.8rem;
	cursor: pointer;
	text-align: left;
	max-width: min(100%, 22rem);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.22s ease, transform 0.2s ease;
}

.run-history__seed:hover {
	background: rgba(108, 140, 255, 0.2);
	border-color: rgba(108, 140, 255, 0.55);
	box-shadow: 0 0 20px rgba(108, 140, 255, 0.12);
	transform: translateY(-2px);
}

.run-history__seed.is-active {
	background: linear-gradient(135deg, rgba(108, 140, 255, 0.35), rgba(157, 125, 255, 0.2));
	border-color: rgba(157, 125, 255, 0.55);
	box-shadow: 0 0 24px rgba(108, 140, 255, 0.2);
}

.run-detail-panel {
	margin-top: 0.85rem;
	padding: 1.25rem 1.35rem 1.35rem;
	background:
		linear-gradient(160deg, rgba(26, 30, 48, 0.96) 0%, rgba(12, 14, 22, 0.99) 100%);
	border: 1px solid rgba(108, 140, 255, 0.22);
	border-radius: calc(var(--radius-lg) - 2px);
	box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.run-detail__head {
	margin-bottom: 1rem;
}

.run-detail__head--toolbar {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem 1rem;
}

.run-detail__head-main {
	flex: 1 1 12rem;
	min-width: 0;
}

.run-detail__head-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 0.5rem 0.75rem;
	flex-shrink: 0;
}

.run-detail__expand-msg {
	font-size: 0.82rem;
	max-width: 22rem;
	line-height: 1.35;
	color: #9aa4c0;
}

.run-detail__expand-msg.err {
	color: #ff8a8a;
}

.kw-table-wrap--loading {
	opacity: 0.45;
	pointer-events: none;
	transition: opacity 0.2s ease;
}

.run-detail__more--busy {
	min-width: 9.75rem;
	cursor: wait;
}

.run-detail__more-busy {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
}

.run-detail__spinner {
	flex-shrink: 0;
	width: 0.95em;
	height: 0.95em;
	border: 2px solid rgba(255, 255, 255, 0.22);
	border-top-color: rgba(180, 200, 255, 0.95);
	border-radius: 50%;
	animation: run-detail-spin 0.7s linear infinite;
}

@keyframes run-detail-spin {
	to {
		transform: rotate(360deg);
	}
}

.run-detail__title {
	margin: 0 0 0.35rem;
	font-size: 1.05rem;
	font-weight: 700;
	color: #f4f6ff;
	word-break: break-word;
}

.run-detail__sub {
	margin: 0 0 0.35rem;
	font-size: 0.88rem;
}

.run-detail__note {
	margin: 0;
	color: #7a849e;
	font-size: 0.78rem;
	line-height: 1.45;
}

.run-detail__loading {
	margin: 0;
}

.kw-table-wrap {
	overflow-x: auto;
	margin-bottom: 1rem;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.kw-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
}

.kw-table th,
.kw-table td {
	padding: 0.55rem 0.7rem;
	text-align: left;
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	vertical-align: top;
}

.kw-table th {
	font-size: 0.72rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #9aa4c0;
	background: rgba(0, 0, 0, 0.35);
}

.kw-table__th-keyword {
	vertical-align: middle;
	min-width: 12rem;
}

.kw-table__th-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.65rem;
	width: 100%;
}

.kw-table__th-label {
	flex: 1 1 auto;
	min-width: 0;
	text-align: left;
}

.kw-sort {
	display: inline-flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 1px;
	margin-left: auto;
}

.kw-sort__btn {
	font: inherit;
	font-size: 0.62rem;
	line-height: 1;
	width: 1.55rem;
	height: 1.05rem;
	padding: 0;
	margin: 0;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.06);
	color: #c5cce8;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.kw-sort__btn:hover {
	background: rgba(108, 140, 255, 0.22);
	border-color: rgba(108, 140, 255, 0.45);
	color: #fff;
}

.kw-sort__btn.is-active {
	background: linear-gradient(135deg, rgba(108, 140, 255, 0.45), rgba(74, 98, 216, 0.5));
	border-color: rgba(157, 125, 255, 0.55);
	color: #fff;
	box-shadow: 0 0 12px rgba(108, 140, 255, 0.25);
}

.kw-table tbody tr:hover td {
	background: rgba(108, 140, 255, 0.06);
}

.kw-table__dash {
	color: #6b738c;
	font-variant-numeric: tabular-nums;
	white-space: nowrap;
}

.kw-table__empty {
	text-align: center;
	color: var(--muted);
	font-size: 0.88rem;
}

.kw-pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.4rem 0.45rem;
	margin-top: 0.25rem;
}

.kw-pager__btn,
.kw-pager__num {
	font: inherit;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 0.45rem 0.75rem;
	border-radius: 8px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.06);
	color: #dce0f0;
	cursor: pointer;
	transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

.kw-pager__num {
	min-width: 2.35rem;
	text-align: center;
}

.kw-pager__btn:hover:not(:disabled),
.kw-pager__num:hover:not(:disabled) {
	background: rgba(108, 140, 255, 0.18);
	border-color: rgba(108, 140, 255, 0.45);
}

.kw-pager__btn:active:not(:disabled),
.kw-pager__num:active:not(:disabled) {
	transform: translateY(1px);
}

.kw-pager__btn:disabled,
.kw-pager__num:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.kw-pager__num.is-current {
	background: linear-gradient(135deg, var(--accent), #4a62d8);
	border-color: transparent;
	color: #fff;
	box-shadow: 0 6px 22px rgba(108, 140, 255, 0.35);
}

.kw-pager__edge {
	min-width: 4.5rem;
}

.kw-pager__status {
	font-size: 0.84rem;
	color: var(--muted);
	padding: 0 0.35rem;
}

.tool-block {
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}

.tool-block h2 {
	font-size: 1.15rem;
	margin: 0 0 0.5rem;
}

.tool-desc {
	font-size: 0.9rem;
	margin-bottom: 1rem;
}

.form label {
	display: block;
	margin-bottom: 1rem;
	font-size: 0.9rem;
	color: var(--muted);
}

.form input[type="text"],
.form input[type="email"],
.form input[type="password"] {
	width: 100%;
	margin-top: 0.35rem;
	padding: 0.65rem 0.85rem;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: rgba(0, 0, 0, 0.35);
	color: var(--text);
	font-size: 1rem;
}

.form input:focus {
	outline: none;
	border-color: rgba(108, 140, 255, 0.55);
	box-shadow: 0 0 0 3px rgba(108, 140, 255, 0.15);
}

label.check {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	cursor: pointer;
}

label.check input {
	width: auto;
}

.kw-form-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.65rem 1rem;
	margin-top: 0.25rem;
}

.kw-form-actions .btn {
	flex-shrink: 0;
}

.kw-quota-hint {
	flex: 1 1 220px;
	min-width: 0;
	margin: 0;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--err);
	line-height: 1.35;
}

.kw-quota-hint:empty {
	display: none;
}

.err {
	color: var(--err);
	margin: 0.5rem 0;
}

.muted {
	color: var(--muted);
	font-size: 0.92rem;
}

.muted a {
	color: var(--accent);
}

.welcome {
	color: var(--muted);
}

.tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin: 0.75rem 0;
}

.tag {
	background: rgba(255, 255, 255, 0.08);
	padding: 0.25rem 0.55rem;
	border-radius: 6px;
	font-size: 0.85rem;
	animation: tagIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes tagIn {
	from {
		opacity: 0;
		transform: translateY(4px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.tag.seed {
	outline: 2px solid var(--accent);
	background: rgba(108, 140, 255, 0.15);
}

.block-label {
	display: block;
	margin-top: 0.75rem;
	font-size: 0.85rem;
	color: var(--muted);
}

textarea.mono {
	width: 100%;
	min-height: 200px;
	margin-top: 0.35rem;
	padding: 0.75rem;
	border-radius: 8px;
	border: 1px solid var(--border);
	background: rgba(0, 0, 0, 0.45);
	color: var(--text);
	font-family: var(--mono);
	font-size: 0.82rem;
	resize: vertical;
}

.api-hint {
	margin-top: 1.1rem;
	margin-bottom: 0;
	font-size: 0.85rem;
}

.api-hint code {
	font-family: var(--mono);
	font-size: 0.78rem;
	word-break: break-all;
}

.site-footer {
	border-top: 1px solid var(--border);
	padding: 2rem 0;
	margin-top: 2rem;
	color: var(--muted);
	font-size: 0.88rem;
}

.site-footer p {
	margin: 0.25rem 0;
}

.site-footer .fine {
	opacity: 0.75;
	font-size: 0.8rem;
}

.fade-in {
	animation: fadeIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.rise {
	animation: rise 0.78s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rise.delay-1 { animation-delay: 0.1s; }
.rise.delay-2 { animation-delay: 0.2s; }

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* —— Home: live-style expansion demo —— */
.demo-showcase {
	position: relative;
	margin: 0 auto 3.25rem;
	max-width: 1080px;
	padding: 2.25rem 1.5rem 2rem;
	border-radius: calc(var(--radius-lg) + 4px);
	border: 1px solid rgba(108, 140, 255, 0.22);
	background:
		linear-gradient(145deg, rgba(30, 36, 58, 0.95) 0%, rgba(14, 16, 26, 0.98) 50%, rgba(22, 26, 44, 0.96) 100%);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.04) inset,
		0 28px 80px rgba(0, 0, 0, 0.45),
		0 0 100px rgba(108, 140, 255, 0.08);
	overflow: hidden;
	animation: demoShowcaseFrame 6s ease-in-out infinite alternate;
}

@keyframes demoShowcaseFrame {
	0% {
		border-color: rgba(108, 140, 255, 0.22);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.04) inset,
			0 28px 80px rgba(0, 0, 0, 0.45),
			0 0 80px rgba(108, 140, 255, 0.06);
	}
	100% {
		border-color: rgba(157, 125, 255, 0.38);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.06) inset,
			0 32px 88px rgba(0, 0, 0, 0.48),
			0 0 120px rgba(108, 140, 255, 0.12);
	}
}

.demo-showcase__glow {
	position: absolute;
	width: 70%;
	height: 80%;
	top: -35%;
	right: -15%;
	background: radial-gradient(ellipse at center, rgba(157, 125, 255, 0.22) 0%, transparent 62%);
	pointer-events: none;
	animation: demoGlowDrift 9s ease-in-out infinite alternate;
}

@keyframes demoGlowDrift {
	from {
		transform: translate(0, 0) scale(1);
		opacity: 0.78;
	}
	to {
		transform: translate(-9%, 6%) scale(1.08);
		opacity: 1;
	}
}

.demo-showcase__inner {
	position: relative;
	z-index: 1;
}

.demo-kicker {
	font-size: 0.7rem;
	text-transform: uppercase;
	letter-spacing: 0.28em;
	color: #8b95b8;
	margin: 0 0 0.65rem;
	font-weight: 700;
}

.demo-title {
	font-size: clamp(1.35rem, 3.2vw, 1.85rem);
	font-weight: 800;
	letter-spacing: -0.03em;
	line-height: 1.22;
	margin: 0 0 1rem;
	max-width: none;
	background: linear-gradient(105deg, #fff 8%, #c8d4ff 48%, #a8b8ff 62%, #c8d4ff 88%, #fff 100%);
	background-size: 170% 100%;
	background-position: 0% 50%;
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	animation: heroTitleSheen 7.5s ease-in-out infinite;
}

.demo-lede {
	margin: 0 0 2rem;
	max-width: none;
	font-size: 1.02rem;
	line-height: 1.72;
	color: #aeb6d4;
	text-align: justify;
	text-justify: inter-word;
}

.demo-stage {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0.25rem;
}

.demo-stage__seed-block {
	text-align: center;
	max-width: 100%;
}

.demo-seed-row {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.85rem 1rem;
}

.demo-label {
	display: block;
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #7a85a8;
	margin-bottom: 0.65rem;
}

.demo-kw-panel {
	width: 100%;
	margin-top: 1.35rem;
	padding-top: 1.35rem;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-kw-panel > .demo-label {
	margin-bottom: 0.65rem;
}

.demo-seed-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	padding: 0.85rem 1.15rem;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(108, 140, 255, 0.18), rgba(30, 36, 52, 0.9));
	border: 1px solid rgba(108, 140, 255, 0.45);
	box-shadow:
		0 0 0 1px rgba(255, 255, 255, 0.06) inset,
		0 12px 36px rgba(108, 140, 255, 0.2);
	animation: demoSeedPulse 3.2s ease-in-out infinite alternate;
}

@keyframes demoSeedPulse {
	0% {
		transform: translateY(0);
		border-color: rgba(108, 140, 255, 0.42);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.06) inset,
			0 12px 36px rgba(108, 140, 255, 0.18);
	}
	100% {
		transform: translateY(-3px);
		border-color: rgba(157, 125, 255, 0.55);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.08) inset,
			0 18px 44px rgba(108, 140, 255, 0.32);
	}
}

.demo-seed-icon {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: linear-gradient(135deg, #7cffc4, #6c8cff);
	box-shadow: 0 0 14px rgba(124, 255, 196, 0.55);
	flex-shrink: 0;
	animation: demoSeedIconGlow 2s ease-in-out infinite alternate;
}

@keyframes demoSeedIconGlow {
	0% {
		box-shadow: 0 0 12px rgba(124, 255, 196, 0.45);
		transform: scale(1);
	}
	100% {
		box-shadow: 0 0 22px rgba(108, 140, 255, 0.65);
		transform: scale(1.12);
	}
}

.demo-seed-text {
	font-family: var(--mono);
	font-size: 0.88rem;
	font-weight: 600;
	color: #eef1ff;
	letter-spacing: -0.01em;
}

.demo-arrow {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.35rem;
	min-height: 3rem;
}

.demo-arrow--inline {
	flex-direction: row;
	min-height: 0;
	gap: 0.5rem;
}

.demo-arrow-line {
	width: 2px;
	height: 48px;
	border-radius: 2px;
	background: linear-gradient(180deg, rgba(108, 140, 255, 0.1), rgba(108, 140, 255, 0.85), rgba(157, 125, 255, 0.35));
	box-shadow: 0 0 12px rgba(108, 140, 255, 0.35);
}

.demo-arrow-line--h {
	width: min(56px, 12vw);
	height: 2px;
	background: linear-gradient(90deg, rgba(108, 140, 255, 0.15), rgba(108, 140, 255, 0.9), rgba(157, 125, 255, 0.35));
}

.demo-arrow-head {
	font-size: 0.62rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #b8c4ff;
	padding: 0.25rem 0.5rem;
	border-radius: 6px;
	background: rgba(108, 140, 255, 0.12);
	border: 1px solid rgba(108, 140, 255, 0.3);
	animation: demoChevronNudge 2.4s ease-in-out infinite alternate;
}

@keyframes demoChevronNudge {
	0% {
		transform: translateX(0);
		opacity: 0.88;
	}
	100% {
		transform: translateX(4px);
		opacity: 1;
	}
}

.demo-kw-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.45rem 0.85rem;
	counter-reset: demokw;
}

@media (max-width: 520px) {
	.demo-kw-list {
		grid-template-columns: 1fr;
	}
}

.demo-kw-list li {
	counter-increment: demokw;
	position: relative;
	margin: 0;
	padding: 0.55rem 0.65rem 0.55rem 2rem;
	font-size: 0.84rem;
	line-height: 1.45;
	color: #e8ecfa;
	background: rgba(255, 255, 255, 0.045);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	border-left: 3px solid rgba(108, 140, 255, 0.5);
	transition: background 0.15s ease, border-color 0.15s;
	animation: demoTagPop 0.4s ease backwards;
	overflow-wrap: break-word;
	word-break: normal;
	min-width: 0;
}

.demo-kw-list li:nth-child(1) { animation-delay: 0.03s; }
.demo-kw-list li:nth-child(2) { animation-delay: 0.06s; }
.demo-kw-list li:nth-child(3) { animation-delay: 0.09s; }
.demo-kw-list li:nth-child(4) { animation-delay: 0.12s; }
.demo-kw-list li:nth-child(5) { animation-delay: 0.15s; }
.demo-kw-list li:nth-child(6) { animation-delay: 0.18s; }
.demo-kw-list li:nth-child(7) { animation-delay: 0.21s; }
.demo-kw-list li:nth-child(8) { animation-delay: 0.24s; }
.demo-kw-list li:nth-child(9) { animation-delay: 0.27s; }
.demo-kw-list li:nth-child(10) { animation-delay: 0.3s; }

.demo-kw-list li::before {
	content: counter(demokw);
	position: absolute;
	left: 0.55rem;
	top: 0.58rem;
	font-size: 0.68rem;
	font-weight: 800;
	color: #9aacff;
	opacity: 0.95;
	font-variant-numeric: tabular-nums;
	min-width: 1.1em;
	line-height: 1.45;
}

.demo-kw-list li:hover {
	background: rgba(108, 140, 255, 0.08);
	border-color: rgba(108, 140, 255, 0.22);
}

@keyframes demoTagPop {
	from { opacity: 0; }
	to { opacity: 1; }
}

.demo-case-note {
	margin-top: 1.75rem;
	padding: 1rem 1.15rem 1rem 1.25rem;
	border-radius: var(--radius);
	border-left: 3px solid rgba(124, 200, 255, 0.65);
	background: rgba(0, 0, 0, 0.28);
	font-size: 0.82rem;
	line-height: 1.62;
	color: #9aa4bc;
}

.demo-case-note strong {
	color: #c5cce8;
}

.demo-case-note em {
	color: #b8c8ff;
	font-style: italic;
}

.cf-turnstile-host {
	margin-top: 0.75rem;
	min-height: 70px;
}

.kw-turnstile-hint {
	margin-top: 0.5rem;
}

@media (prefers-reduced-motion: reduce) {
	body::before,
	.bg-bubble,
	.bg-grid,
	.logo-name,
	.logo-mark,
	.hero h1,
	.trust-dot,
	.trust-strip,
	.demo-showcase,
	.demo-title,
	.demo-seed-pill,
	.demo-seed-icon,
	.demo-arrow-head,
	.btn.glow,
	.tag,
	.fade-in,
	.rise {
		animation: none !important;
	}

	.demo-showcase__glow,
	.demo-kw-list li {
		animation: none !important;
	}

	.hero h1 {
		background: linear-gradient(100deg, #fff 0%, #d4dcff 45%, #a8b8ff 100%);
		background-size: 100% 100%;
		transform: none;
	}

	.demo-title {
		background: linear-gradient(105deg, #fff 10%, #c8d4ff 55%, #a8b8ff 100%);
		background-size: 100% 100%;
	}

	.trust-strip {
		border-color: var(--border);
		box-shadow: var(--shadow-soft);
	}

	.demo-showcase {
		border-color: rgba(108, 140, 255, 0.22);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.04) inset,
			0 28px 80px rgba(0, 0, 0, 0.45),
			0 0 100px rgba(108, 140, 255, 0.08);
	}

	.demo-seed-pill {
		transform: none;
		border-color: rgba(108, 140, 255, 0.45);
		box-shadow:
			0 0 0 1px rgba(255, 255, 255, 0.06) inset,
			0 12px 36px rgba(108, 140, 255, 0.2);
	}

	.demo-seed-icon {
		transform: none;
		box-shadow: 0 0 14px rgba(124, 255, 196, 0.55);
	}

	.demo-arrow-head {
		transform: none;
		opacity: 1;
	}

	.bg-bubble {
		opacity: 0 !important;
		visibility: hidden !important;
	}

	.card:hover,
	.panel:hover,
	.price-card:hover,
	.run-history__seed:hover,
	.nav a:hover {
		transform: none;
	}
}
