:root {
	--color-bg: #14161c;
	--color-bg-secondary: #1d212a;
	--color-surface: #252a35;
	--color-text: #f1f4f8;
	--color-heading: #8bc5ff;
	--color-primary: #f5a524;
	--color-primary-hover: #d88914;
	--color-accent: #a96cff;
	--color-success: #39d98a;
	--color-warning: #f5a524;
	--color-danger: #ff6b81;
	--color-border: #323847;
	--color-muted: #a3a8b8;
	--color-icon: #ff6b81;
	--gray-50: #0e1015;
	--gray-100: #14161c;
	--gray-200: #1d212a;
	--gray-300: #252a35;
	--gray-400: #323847;
	--gray-500: #4a5165;
	--gray-600: #6b7280;
	--gray-700: #9ca3af;
	--gray-800: #d1d5db;
	--gray-900: #f9fafb;
	--font-sans:
		"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--font-display:
		"DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
		sans-serif;
	--font-mono: "JetBrains Mono", "SF Mono", Menlo, Monaco, Consolas, monospace;
	--text-xs: 0.75rem;
	--text-sm: 0.875rem;
	--text-base: 1rem;
	--text-lg: 1.125rem;
	--text-xl: 1.25rem;
	--text-2xl: 1.5rem;
	--text-3xl: 1.875rem;
	--text-4xl: 2.25rem;
	--text-5xl: 3rem;
	--leading-tight: 1.2;
	--leading-snug: 1.35;
	--leading-normal: 1.5;
	--leading-relaxed: 1.7;
	--space-0: 0;
	--space-1: 4px;
	--space-2: 8px;
	--space-3: 12px;
	--space-4: 16px;
	--space-5: 20px;
	--space-6: 24px;
	--space-8: 32px;
	--space-10: 40px;
	--space-12: 48px;
	--space-16: 64px;
	--space-20: 80px;
	--space-24: 96px;
	--radius-xs: 3px;
	--radius-sm: 6px;
	--radius-md: 10px;
	--radius-lg: 16px;
	--radius-xl: 24px;
	--radius-pill: 999px;
	--radius-card: 14px;
	--shadow-xs: 0 0 0 1px rgba(0, 0, 0, 0.6);
	--shadow-sm: 0 14px 30px rgba(0, 0, 0, 0.55);
	--shadow-md: 0 24px 60px rgba(2, 6, 23, 0.85);
	--shadow-glow-primary: 0 0 18px rgba(245, 165, 36, 0.55);
	--shadow-glow-accent: 0 0 22px rgba(169, 108, 255, 0.6);
	--shadow-glow-surface: 0 0 32px rgba(27, 31, 40, 0.9);
	--transition-fast: 120ms ease-out;
	--transition-base: 200ms ease-out;
	--transition-slow: 320ms ease-out;
	--grid-max-width: 1120px;
	--container-padding-x: 20px;
	--focus-ring-color: rgba(139, 197, 255, 0.9);
	--focus-ring:
		0 0 0 2px rgba(13, 17, 23, 1), 0 0 0 4px var(--focus-ring-color);
	--nav-height: 72px;
}
*,
*::before,
*::after {
	box-sizing: border-box;
}
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
	padding: 0;
}
body {
	min-height: 100vh;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	background: radial-gradient(
		circle at top,
		#1d212a 0,
		#14161c 52%,
		#0e1015 100%
	);
	color: var(--color-text);
	font-family: var(--font-sans);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}
input,
button,
textarea,
select {
	font: inherit;
	color: inherit;
}
button {
	border: none;
	padding: 0;
	background: none;
}
a {
	text-decoration: none;
	color: inherit;
}
ul[role="list"],
ol[role="list"] {
	list-style: none;
	margin: 0;
	padding: 0;
}
html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--nav-height);
}
body {
	overflow-x: hidden;
	background-attachment: fixed;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-display);
	font-weight: 700;
	color: var(--color-heading);
	letter-spacing: 0.03em;
	text-transform: uppercase;
}
h1 {
	font-size: clamp(2.4rem, 3.4vw, 3.1rem);
	line-height: var(--leading-tight);
	margin-bottom: var(--space-6);
}
h2 {
	font-size: clamp(1.7rem, 2.4vw, 2.1rem);
	line-height: var(--leading-snug);
	margin-bottom: var(--space-4);
}
h3 {
	font-size: 1.35rem;
	line-height: var(--leading-snug);
	margin-bottom: var(--space-3);
}
h4 {
	font-size: 1.15rem;
	line-height: var(--leading-snug);
	margin-bottom: var(--space-2);
}
p {
	margin-bottom: var(--space-4);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	color: var(--color-text);
}
p.lead {
	font-size: var(--text-lg);
	line-height: var(--leading-relaxed);
	color: var(--color-muted);
}
a {
	color: var(--color-primary);
	transition:
		color var(--transition-base),
		text-shadow var(--transition-base);
}
a:hover {
	color: var(--color-primary-hover);
	text-shadow: 0 0 12px rgba(245, 165, 36, 0.55);
}
a:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
	border-radius: var(--radius-xs);
}
code,
kbd,
pre,
samp {
	font-family: var(--font-mono);
}
::selection {
	background: rgba(169, 108, 255, 0.55);
	color: var(--color-text);
}
.page {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.page-main {
	flex: 1 0 auto;
}
.page-footer {
	flex-shrink: 0;
}
.container {
	width: 100%;
	max-width: var(--grid-max-width);
	margin: 0 auto;
	padding-left: var(--container-padding-x);
	padding-right: var(--container-padding-x);
}
.section {
	padding-top: var(--space-16);
	padding-bottom: var(--space-16);
}
.section--alt {
	background: radial-gradient(
		circle at top,
		#1d212a 0,
		#14161c 70%,
		#10121a 100%
	);
}
.section-header {
	margin-bottom: var(--space-8);
	max-width: 720px;
}
.section-eyebrow {
	font-size: var(--text-xs);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-2);
}
.section-title {
	margin-bottom: var(--space-2);
}
.section-subtitle {
	font-size: var(--text-sm);
	color: var(--color-muted);
	max-width: 640px;
}
.grid {
	display: grid;
	gap: var(--space-6);
}
.grid-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 960px) {
	.grid-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}
@media (max-width: 768px) {
	.grid-2,
	.grid-3,
	.grid-4 {
		grid-template-columns: minmax(0, 1fr);
	}
}
.flex {
	display: flex;
}
.flex-col {
	flex-direction: column;
}
.flex-row {
	flex-direction: row;
}
.flex-wrap {
	flex-wrap: wrap;
}
.items-center {
	align-items: center;
}
.items-start {
	align-items: flex-start;
}
.items-end {
	align-items: flex-end;
}
.justify-between {
	justify-content: space-between;
}
.justify-center {
	justify-content: center;
}
.gap-2 {
	gap: var(--space-2);
}
.gap-3 {
	gap: var(--space-3);
}
.gap-4 {
	gap: var(--space-4);
}
.gap-6 {
	gap: var(--space-6);
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.mt-0 {
	margin-top: 0;
}
.mt-2 {
	margin-top: var(--space-2);
}
.mt-4 {
	margin-top: var(--space-4);
}
.mt-6 {
	margin-top: var(--space-6);
}
.mt-8 {
	margin-top: var(--space-8);
}
.mb-0 {
	margin-bottom: 0;
}
.mb-2 {
	margin-bottom: var(--space-2);
}
.mb-4 {
	margin-bottom: var(--space-4);
}
.mb-6 {
	margin-bottom: var(--space-6);
}
.mb-8 {
	margin-bottom: var(--space-8);
}
.pt-0 {
	padding-top: 0;
}
.pt-4 {
	padding-top: var(--space-4);
}
.pt-8 {
	padding-top: var(--space-8);
}
.pb-0 {
	padding-bottom: 0;
}
.pb-4 {
	padding-bottom: var(--space-4);
}
.pb-8 {
	padding-bottom: var(--space-8);
}
.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	padding: 10px 20px;
	border-radius: var(--radius-pill);
	font-size: var(--text-sm);
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	background: linear-gradient(135deg, var(--color-primary), #f7c45a);
	color: #151515;
	box-shadow: var(--shadow-sm), var(--shadow-glow-primary);
	cursor: pointer;
	transition:
		transform var(--transition-fast),
		box-shadow var(--transition-fast),
		background var(--transition-fast),
		filter var(--transition-fast);
}
.btn:hover {
	transform: translateY(-1px) scale(1.01);
	box-shadow: var(--shadow-md), var(--shadow-glow-primary);
	background: linear-gradient(135deg, var(--color-primary-hover), #f0b442);
	filter: saturate(1.1);
}
.btn:active {
	transform: translateY(0) scale(0.99);
	box-shadow: var(--shadow-sm);
}
.btn:disabled,
.btn[aria-disabled="true"] {
	cursor: not-allowed;
	opacity: 0.55;
	box-shadow: var(--shadow-xs);
	transform: none;
}
.btn-primary {
	background: linear-gradient(135deg, var(--color-primary), #f7c45a);
	color: #151515 !important;
}
.btn-ghost {
	background: rgba(37, 42, 53, 0.9);
	color: var(--color-heading) !important;
	border-radius: var(--radius-pill);
	box-shadow: var(--shadow-xs);
	padding: 9px 18px;
}
.btn-ghost:hover {
	background: rgba(47, 54, 68, 1);
	box-shadow: var(--shadow-sm), var(--shadow-glow-accent);
}
.btn-accent {
	background: linear-gradient(135deg, var(--color-accent), #6b9bff);
	color: #05060b !important;
	box-shadow: var(--shadow-sm), var(--shadow-glow-accent);
}
.btn-icon {
	padding: 8px 12px;
	border-radius: var(--radius-pill);
	background: rgba(37, 42, 53, 0.95);
	color: var(--color-icon);
}
.btn-icon svg {
	width: 18px;
	height: 18px;
}
.btn:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring), var(--shadow-glow-primary);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="password"],
textarea,
select {
	width: 100%;
	padding: 11px 13px;
	border-radius: var(--radius-sm);
	border: 1px solid var(--color-border);
	background: rgba(13, 16, 22, 0.9);
	color: var(--color-text);
	font-size: var(--text-sm);
	line-height: 1.4;
	box-shadow: 0 0 0 1px rgba(8, 10, 16, 0.9);
	transition:
		border-color var(--transition-base),
		box-shadow var(--transition-base),
		background var(--transition-base);
}
textarea {
	min-height: 120px;
	resize: vertical;
}
input::placeholder,
textarea::placeholder {
	color: var(--color-muted);
	opacity: 0.8;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: none;
	border-color: var(--color-accent);
	box-shadow:
		var(--focus-ring),
		0 0 22px rgba(169, 108, 255, 0.45);
}
input[aria-invalid="true"],
textarea[aria-invalid="true"] {
	border-color: var(--color-danger);
}
input[disabled],
textarea[disabled],
select[disabled] {
	opacity: 0.6;
	cursor: not-allowed;
	background: rgba(20, 22, 28, 0.9);
}
label {
	display: block;
	font-size: var(--text-xs);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-muted);
	margin-bottom: var(--space-2);
}
.form-field {
	margin-bottom: var(--space-4);
}
.form-help {
	margin-top: 6px;
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.form-error {
	margin-top: 6px;
	font-size: var(--text-xs);
	color: var(--color-danger);
}
.card {
	position: relative;
	border-radius: var(--radius-card);
	background: radial-gradient(
		circle at top,
		#30374a 0,
		rgba(37, 42, 53, 0.98) 32%,
		rgba(22, 25, 33, 0.98) 100%
	);
	border: 1px solid rgba(50, 56, 71, 0.9);
	box-shadow: var(--shadow-sm), var(--shadow-glow-surface);
	padding: var(--space-5);
	color: var(--color-text);
	overflow: hidden;
	backdrop-filter: blur(12px);
}
.card::before {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: inherit;
	background:
		radial-gradient(circle at 0 0, rgba(169, 108, 255, 0.24), transparent 60%),
		radial-gradient(
			circle at 100% 100%,
			rgba(57, 217, 138, 0.18),
			transparent 65%
		);
	mix-blend-mode: screen;
	opacity: 0.75;
	pointer-events: none;
}
.card-content {
	position: relative;
	z-index: 1;
}
.card-header {
	margin-bottom: var(--space-3);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-3);
}
.card-title {
	font-size: var(--text-lg);
	margin-bottom: 4px;
}
.card-eyebrow {
	font-size: var(--text-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-accent);
}
.card-meta {
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(20, 22, 28, 0.95);
	border: 1px solid rgba(72, 80, 102, 0.9);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.chip-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--color-success);
	box-shadow: 0 0 12px rgba(57, 217, 138, 0.85);
}
.tag-pill {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	border: 1px solid rgba(139, 197, 255, 0.5);
	font-size: var(--text-2xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-heading);
	background: rgba(12, 17, 24, 0.9);
}
.badge-outline {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 999px;
	border: 1px solid var(--color-border);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.pill-meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(20, 22, 28, 0.9);
	border: 1px solid rgba(50, 56, 71, 0.9);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.pill-meta-icon {
	width: 14px;
	height: 14px;
	border-radius: 4px;
	background:
		radial-gradient(circle at 30% 0, #ff6b81 0, transparent 55%),
		radial-gradient(circle at 70% 100%, #a96cff 0, transparent 60%);
	box-shadow: 0 0 10px rgba(255, 107, 129, 0.75);
}
.kpi-label {
	font-size: var(--text-xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-muted);
}
.kpi-value {
	font-family: var(--font-mono);
	font-size: var(--text-xl);
	color: var(--color-success);
}
.kpi-delta {
	font-size: var(--text-xs);
	color: var(--color-success);
}
.nav-blur {
	position: fixed;
	inset: 0;
	z-index: -1;
	background: radial-gradient(
		circle at top,
		#222634 0,
		#13151b 60%,
		#05060b 100%
	);
}
.glass-surface {
	border-radius: var(--radius-lg);
	background: rgba(19, 21, 27, 0.9);
	border: 1px solid rgba(70, 83, 110, 0.9);
	box-shadow: var(--shadow-sm);
	backdrop-filter: blur(16px);
}
.pixel-border {
	position: relative;
}
.pixel-border::before {
	content: "";
	position: absolute;
	inset: -2px;
	border: 2px solid rgba(139, 197, 255, 0.8);
	clip-path: polygon(
		0 6px,
		6px 6px,
		6px 0,
		calc(100% - 6px) 0,
		calc(100% - 6px) 6px,
		100% 6px,
		100% calc(100% - 6px),
		calc(100% - 6px) calc(100% - 6px),
		calc(100% - 6px) 100%,
		6px 100%,
		6px calc(100% - 6px),
		0 calc(100% - 6px)
	);
	opacity: 0.85;
	pointer-events: none;
}
.pixel-shadow {
	box-shadow:
		0 0 0 2px rgba(5, 6, 11, 1),
		0 0 0 4px rgba(50, 56, 71, 0.9),
		0 0 20px rgba(5, 6, 11, 0.9);
}
.icon-circle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 10px;
	background: radial-gradient(
		circle at 30% 0,
		#ff6b81 0,
		#a96cff 50%,
		#8bc5ff 100%
	);
	box-shadow: 0 0 18px rgba(169, 108, 255, 0.8);
}
.icon-circle svg {
	width: 18px;
	height: 18px;
	color: #05060b;
}
.kbd {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1px 6px;
	border-radius: 5px;
	border: 1px solid var(--color-border);
	background: rgba(10, 12, 18, 0.9);
	box-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
	font-family: var(--font-mono);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.table {
	width: 100%;
	border-collapse: collapse;
	font-size: var(--text-sm);
}
.table th,
.table td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(38, 42, 56, 0.95);
}
.table th {
	font-size: var(--text-xs);
	text-transform: uppercase;
	letter-spacing: 0.16em;
	color: var(--color-muted);
	text-align: left;
}
.table tbody tr:nth-child(even) {
	background: rgba(17, 19, 26, 0.85);
}
.table tbody tr:hover {
	background: rgba(31, 34, 47, 0.95);
}
.badge-difficulty {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 2px 9px;
	border-radius: 999px;
	font-size: var(--text-xs);
	background: rgba(17, 19, 26, 0.95);
	border: 1px solid rgba(72, 80, 102, 0.9);
	color: var(--color-muted);
}
.badge-difficulty-dot {
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: var(--color-warning);
	box-shadow: 0 0 10px rgba(245, 165, 36, 0.9);
}
.badge-difficulty--hard .badge-difficulty-dot {
	background: var(--color-danger);
	box-shadow: 0 0 10px rgba(255, 107, 129, 0.9);
}
.badge-difficulty--easy .badge-difficulty-dot {
	background: var(--color-success);
	box-shadow: 0 0 10px rgba(57, 217, 138, 0.9);
}
.media-frame {
	border-radius: var(--radius-md);
	overflow: hidden;
	border: 1px solid rgba(50, 56, 71, 0.9);
	box-shadow: var(--shadow-sm);
}
.media-frame img {
	display: block;
	width: 100%;
	height: auto;
	image-rendering: pixelated;
}
.label-pill {
	display: inline-flex;
	align-items: center;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(12, 14, 20, 0.95);
	border: 1px solid rgba(72, 80, 102, 0.9);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.status-dot {
	width: 8px;
	height: 8px;
	border-radius: 999px;
	background: var(--color-success);
	box-shadow: 0 0 10px rgba(57, 217, 138, 0.9);
}
.status-dot--warning {
	background: var(--color-warning);
	box-shadow: 0 0 10px rgba(245, 165, 36, 0.9);
}
.status-dot--danger {
	background: var(--color-danger);
	box-shadow: 0 0 10px rgba(255, 107, 129, 0.9);
}
.chip-outline {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: 999px;
	border: 1px dashed rgba(139, 197, 255, 0.7);
	font-size: var(--text-xs);
	color: var(--color-heading);
}
.pill-section-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(12, 14, 20, 0.95);
	border: 1px solid rgba(139, 197, 255, 0.6);
	font-size: var(--text-xs);
	color: var(--color-heading);
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
.pill-section-label::before {
	content: "";
	width: 10px;
	height: 10px;
	border-radius: 3px;
	background: linear-gradient(135deg, #39d98a, #8bc5ff);
	box-shadow: 0 0 14px rgba(139, 197, 255, 0.9);
}
.hero-eyebrow {
	font-size: var(--text-xs);
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--color-accent);
	margin-bottom: var(--space-2);
}
.hero-title {
	font-size: clamp(2.7rem, 3.8vw, 3.4rem);
	line-height: var(--leading-tight);
	text-shadow: 0 0 24px rgba(169, 108, 255, 0.8);
}
.hero-subtitle {
	font-size: var(--text-lg);
	color: var(--color-muted);
	max-width: 640px;
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-3);
	margin-top: var(--space-6);
}
.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	margin-top: var(--space-4);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.hero-meta-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.hero-grid {
	display: grid;
	gap: var(--space-8);
	align-items: center;
}
.hero-grid-main {
	grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
}
@media (max-width: 960px) {
	.hero-grid-main {
		grid-template-columns: minmax(0, 1fr);
	}
}
.hero-board {
	position: relative;
	border-radius: 20px;
	background:
		radial-gradient(circle at 20% 0, #a96cff 0, transparent 55%),
		radial-gradient(circle at 80% 100%, #39d98a 0, transparent 60%),
		linear-gradient(145deg, #14161c, #05060b);
	padding: 18px;
	border: 1px solid rgba(139, 197, 255, 0.55);
	box-shadow: 0 26px 72px rgba(0, 0, 0, 0.9);
	overflow: hidden;
}
.hero-board-inner {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	aspect-ratio: 1;
	background: radial-gradient(
		circle at 0 0,
		#23293b 0,
		#151722 55%,
		#05060b 100%
	);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 0 0 1px rgba(31, 34, 47, 0.9);
}
.hero-board-tile {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(31, 34, 47, 0.95);
	background: rgba(14, 16, 23, 0.98);
}
.hero-board-tile:nth-child(odd) {
	background: rgba(20, 24, 35, 0.98);
}
.hero-board-tile--gold {
	background: radial-gradient(
		circle at 30% 0,
		#f5a524 0,
		#8a4b0b 55%,
		#14161c 100%
	);
	box-shadow: 0 0 24px rgba(245, 165, 36, 0.95);
}
.hero-board-tile--blessing {
	background:
		radial-gradient(circle at 20% 0, #39d98a 0, transparent 60%),
		radial-gradient(circle at 80% 100%, #8bc5ff 0, transparent 70%);
}
.hero-board-piece {
	width: 60%;
	aspect-ratio: 1;
	border-radius: 6px;
	background: linear-gradient(145deg, #f1f4f8, #c4d0e8);
	box-shadow:
		0 6px 0 rgba(6, 7, 12, 1),
		0 0 12px rgba(241, 244, 248, 0.8);
	image-rendering: pixelated;
}
.hero-badge {
	position: absolute;
	top: 14px;
	left: 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(8, 10, 18, 0.9);
	border: 1px solid rgba(139, 197, 255, 0.75);
	backdrop-filter: blur(12px);
	font-size: var(--text-xs);
	color: var(--color-heading);
}
.hero-badge-dot {
	width: 8px;
	height: 8px;
	border-radius: 998px;
	background: var(--color-success);
	box-shadow: 0 0 14px rgba(57, 217, 138, 0.95);
}
.hero-orbit {
	position: absolute;
	right: 18px;
	bottom: 18px;
	width: 86px;
	height: 86px;
	border-radius: 999px;
	border: 1px dashed rgba(139, 197, 255, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-orbit-core {
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: radial-gradient(
		circle at 30% 0,
		#ff6b81 0,
		#a96cff 50%,
		#8bc5ff 100%
	);
	box-shadow: 0 0 22px rgba(169, 108, 255, 0.9);
}
.pill-disclaimer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	border-radius: 999px;
	background: rgba(8, 10, 18, 0.95);
	border: 1px solid rgba(114, 121, 146, 0.9);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.pill-disclaimer svg {
	width: 14px;
	height: 14px;
	color: var(--color-warning);
}
.article {
	max-width: 720px;
	margin: 0 auto;
}
.article h2,
.article h3 {
	margin-top: var(--space-8);
}
.article p {
	margin-bottom: var(--space-4);
}
.article ul,
.article ol {
	margin-bottom: var(--space-4);
	padding-left: var(--space-5);
	color: var(--color-text);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
}
.article .article a {
	text-decoration: underline dotted;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}
.badge-category {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	border-radius: 999px;
	background: rgba(8, 10, 16, 0.95);
	border: 1px solid rgba(72, 80, 102, 0.9);
	font-size: var(--text-xs);
	color: var(--color-muted);
}
.badge-category--gambit {
	border-color: rgba(169, 108, 255, 0.8);
	color: var(--color-accent);
}
.badge-category--boss {
	border-color: rgba(255, 107, 129, 0.85);
	color: var(--color-danger);
}
.badge-category--build {
	border-color: rgba(57, 217, 138, 0.9);
	color: var(--color-success);
}
.faq-item {
	border-radius: var(--radius-md);
	border: 1px solid rgba(50, 56, 71, 0.9);
	background: rgba(15, 18, 26, 0.98);
	padding: var(--space-4);
}
.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: var(--space-3);
	cursor: pointer;
}
.faq-question-text {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-heading);
}
.faq-answer {
	margin-top: var(--space-2);
	font-size: var(--text-sm);
	color: var(--color-muted);
}
.badge-new {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	padding: 2px 8px;
	border-radius: 999px;
	background: rgba(43, 255, 162, 0.06);
	border: 1px solid rgba(57, 217, 138, 0.85);
	font-size: var(--text-2xs);
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--color-success);
}
.badge-new-dot {
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: var(--color-success);
	box-shadow: 0 0 10px rgba(57, 217, 138, 0.9);
}
.badge-community {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 3px 10px;
	border-radius: 999px;
	background: rgba(13, 16, 22, 0.95);
	border: 1px solid rgba(169, 108, 255, 0.75);
	font-size: var(--text-xs);
	color: var(--color-accent);
}
.badge-community-icon {
	width: 9px;
	height: 9px;
	border-radius: 3px;
	background: linear-gradient(135deg, #a96cff, #8bc5ff);
	box-shadow: 0 0 16px rgba(169, 108, 255, 0.95);
}
:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
}
[data-focus-visible-added] {
	outline: none;
	box-shadow: var(--focus-ring);
}
@media (prefers-reduced-motion: reduce) {
	*,
	:before,
	:after {
		scroll-behavior: auto !important;
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
	}
	html {
		scroll-behavior: auto;
	}
}
