:root {
	--bg: #0f1117;
	--bg-soft: #151924;
	--surface: #1b2130;
	--surface-raised: #232b3a;
	--surface-muted: #11151f;
	--border: rgba(255, 255, 255, 0.12);
	--border-strong: rgba(255, 255, 255, 0.22);
	--text: #f6f7fb;
	--text-muted: #aeb7c8;
	--text-subtle: #7f8a9d;
	--accent: #f5c542;
	--accent-strong: #ffd75e;
	--blue: #4ea1ff;
	--green: #58c783;
	--red: #f05d5e;
	--shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
	--shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.22);
	--radius: 8px;
	--nav-height: 64px;
	--content-max: 1180px;
	color-scheme: dark;
}

* {
	box-sizing: border-box;
}

html {
	min-width: 0;
	background: var(--bg);
	color: var(--text);
	font-family: Inter, "Segoe UI", Arial, sans-serif;
	scrollbar-width: thin;
	scrollbar-color: rgba(245, 197, 66, 0.7) var(--bg-soft);
	cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23f5c542' stroke='%2315120a' stroke-width='1.5' d='M4 3.5 18.5 12l-6.1 1.55 3.18 6.02-3.06 1.62-3.12-5.91-4.44 4.48L4 3.5Z'/%3E%3C/svg%3E") 4 3, auto;
}

body {
	min-width: 0;
	width: 100%;
	margin: 0;
	background:
		radial-gradient(circle at top left, rgba(78, 161, 255, 0.12), transparent 32rem),
		linear-gradient(180deg, #10131b 0%, #0f1117 44rem);
	color: var(--text);
	font-family: inherit;
}

body::-webkit-scrollbar {
	width: 10px;
}

body::-webkit-scrollbar-track {
	background: var(--bg-soft);
}

body::-webkit-scrollbar-thumb {
	background: rgba(245, 197, 66, 0.72);
	border: 2px solid var(--bg-soft);
	border-radius: 999px;
}

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

a {
	color: inherit;
}

a,
button,
[role="button"],
label,
select,
summary,
.filter-btn,
.card-container,
.deck-img {
	cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffd75e' stroke='%2315120a' stroke-width='1.6' d='M6 2.5h2.2v10.1h.9V7.5h2.1v5.1h.9V8.7h2.1v4.2h.9V10h2.1v5.8c0 3.05-2.05 5.7-5.45 5.7h-1.6c-1.7 0-3.25-.8-4.23-2.18L3.4 15.76l1.76-1.23L6 15.68V2.5Z'/%3E%3C/svg%3E") 7 2, pointer;
}

button,
input,
select {
	font: inherit;
}

:focus-visible {
	outline: 3px solid rgba(245, 197, 66, 0.7);
	outline-offset: 2px;
}

.site-nav {
	position: sticky;
	top: 0;
	z-index: 200;
	min-height: var(--nav-height);
	background: rgba(15, 17, 23, 0.88);
	border-bottom: 1px solid var(--border);
	backdrop-filter: blur(16px);
}

.site-nav__inner {
	width: min(var(--content-max), calc(100% - 32px));
	min-height: var(--nav-height);
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 18px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	margin-right: auto;
	color: var(--text);
	font-size: 1.28rem;
	font-weight: 800;
	text-decoration: none;
	letter-spacing: 0;
	white-space: nowrap;
}

.site-brand::before {
	content: "";
	width: 13px;
	height: 28px;
	border-radius: 3px;
	background: var(--accent);
	box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 8px 22px rgba(245, 197, 66, 0.24);
	transform: skew(-9deg);
}

.site-nav__links {
	display: flex;
	align-items: center;
	gap: 8px;
}

.site-nav__link,
.btn {
	min-height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.04);
	color: var(--text);
	padding: 9px 14px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.btn:hover,
.btn:focus-visible {
	background: rgba(255, 255, 255, 0.08);
	border-color: var(--border-strong);
}

.site-nav__link.is-active {
	background: rgba(245, 197, 66, 0.15);
	border-color: rgba(245, 197, 66, 0.48);
	color: var(--accent-strong);
}

.btn-primary {
	background: var(--accent);
	border-color: var(--accent);
	color: #15120a;
}

.btn-primary:hover,
.btn-primary:focus-visible {
	background: var(--accent-strong);
	border-color: var(--accent-strong);
	color: #15120a;
}

.btn-secondary {
	background: rgba(78, 161, 255, 0.12);
	border-color: rgba(78, 161, 255, 0.32);
	color: #d9ebff;
}

.btn-danger {
	background: rgba(240, 93, 94, 0.14);
	border-color: rgba(240, 93, 94, 0.42);
	color: #ffdede;
}

.page-shell {
	width: min(var(--content-max), calc(100% - 32px));
	margin: 0 auto;
	padding: 40px 0 56px;
}

.panel {
	background: rgba(27, 33, 48, 0.86);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-soft);
}

.eyebrow {
	color: var(--accent);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.page-title {
	margin: 0;
	color: var(--text);
	font-size: 4.25rem;
	line-height: 0.98;
	letter-spacing: 0;
}

.section-title {
	margin: 0 0 14px;
	color: var(--text);
	font-size: 2rem;
	line-height: 1.15;
	letter-spacing: 0;
}

.lede {
	color: var(--text-muted);
	font-size: 1.28rem;
	line-height: 1.7;
}

.hero .btn {
	font-size: 1.05rem;
}

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

.hero {
	position: relative;
	min-height: calc(100svh - var(--nav-height));
	display: grid;
	align-items: center;
	overflow: hidden;
	background-image: url("/assets/images/B01001.jpg");
	background-position: center 24%;
	background-size: cover;
}

.hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(7, 9, 14, 0.7) 0%, rgba(7, 9, 14, 0.48) 48%, rgba(7, 9, 14, 0.3) 100%),
		rgba(7, 9, 14, 0.28);
}

.hero::after {
	content: none;
}

.hero__inner {
	position: relative;
	z-index: 1;
	width: min(var(--content-max), calc(100% - 32px));
	margin: 0 auto;
	padding: 68px 0 104px;
}

.hero__content {
	max-width: 860px;
	display: grid;
	gap: 22px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.hero__browse-btn {
	position: relative;
	overflow: hidden;
	min-height: 56px;
	padding: 16px 26px;
	border-radius: 10px;
	font-size: 1.18rem;
	box-shadow: 0 12px 34px rgba(245, 197, 66, 0.28);
	animation: browse-cta-pulse 2.4s ease-in-out infinite;
}

.hero__browse-btn::after {
	content: "";
	position: absolute;
	top: -35%;
	bottom: -35%;
	left: -45%;
	width: 36%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
	transform: skewX(-18deg);
	animation: browse-cta-shine 3.2s ease-in-out infinite;
	pointer-events: none;
}

.hero__browse-btn:hover,
.hero__browse-btn:focus-visible {
	transform: translateY(-2px) scale(1.03);
	box-shadow: 0 18px 42px rgba(245, 197, 66, 0.36);
}

@keyframes browse-cta-pulse {
	0%,
	100% {
		box-shadow: 0 12px 34px rgba(245, 197, 66, 0.28);
	}
	50% {
		box-shadow: 0 16px 46px rgba(245, 197, 66, 0.48);
	}
}

@keyframes browse-cta-shine {
	0%,
	45% {
		left: -45%;
	}
	70%,
	100% {
		left: 112%;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hero__browse-btn,
	.hero__browse-btn::after {
		animation: none;
	}
}

.hero__proof {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 6px;
}

.proof-pill,
.meta-pill {
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4px;
	min-height: 32px;
	max-width: 100%;
	padding: 7px 10px;
	border: 1px solid var(--border);
	border-radius: var(--radius);
	background: rgba(255, 255, 255, 0.06);
	color: var(--text-muted);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.35;
}

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

.feature-card {
	padding: 22px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: var(--radius);
}

.feature-card h2,
.feature-card h3 {
	margin: 0 0 10px;
	color: var(--text);
	font-size: 1.18rem;
}

.feature-card p {
	margin: 0;
	color: var(--text-muted);
	font-size: 1.05rem;
	line-height: 1.6;
}

.content-panel {
	max-width: 900px;
	margin: 0 auto;
	padding: 32px;
}

.content-panel p,
.content-panel li {
	color: var(--text-muted);
	font-size: 1.1rem;
	line-height: 1.7;
}

.content-panel h1,
.content-panel h2 {
	color: var(--text);
	letter-spacing: 0;
}

.text-link {
	color: var(--accent-strong);
	text-decoration: none;
	border-bottom: 1px solid rgba(245, 197, 66, 0.44);
}

.text-link:hover {
	border-bottom-color: var(--accent-strong);
}

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
	color: var(--text-subtle);
	font-size: 0.9rem;
}

.breadcrumb a {
	color: var(--accent-strong);
	text-decoration: none;
}

@media (max-width: 760px) {
	:root {
		--nav-height: auto;
	}

	.site-nav__inner {
		width: min(100% - 20px, var(--content-max));
		min-height: 58px;
		gap: 10px;
	}

	.site-brand {
		font-size: 1rem;
	}

	.site-nav__links {
		gap: 6px;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	.site-nav__link,
	.btn {
		min-height: 36px;
		padding: 8px 10px;
		font-size: 0.9rem;
	}

	.page-shell {
		width: min(100% - 20px, var(--content-max));
		padding: 24px 0 36px;
	}

	.hero {
		min-height: calc(100svh - 58px);
	}

	.hero__inner {
		width: min(100% - 24px, var(--content-max));
		padding: 48px 0 86px;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
	}

	.hero__browse-btn {
		min-height: 52px;
		padding: 15px 22px;
		font-size: 1.08rem;
	}

	.page-title {
		font-size: 2.35rem;
	}

	.section-title {
		font-size: 1.55rem;
	}

	.lede {
		font-size: 1.08rem;
	}

	.feature-grid {
		grid-template-columns: 1fr;
	}

	.content-panel {
		padding: 22px;
	}
}
