/* ─── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

:root {
	--bg: #0c0d0f;
	--bg-card: #13151a;
	--bg-input: #0e1014;
	--bg-hover: #1c1f27;
	--surface: #0d1420;
	--surface-2: #0b111c;
	--surface-3: #0a111d;
	--border: #1e2128;
	--border-soft: #252830;
	--accent: #00c896;
	--accent-dim: rgba(0, 200, 150, 0.08);
	--accent2: #4f8ef7;
	--accent2-dim: rgba(79, 142, 247, 0.12);
	--saas: #f7934f;
	--saas-dim: rgba(247, 147, 79, 0.12);
	--font-display: "Syne", sans-serif;
	--font-body: "DM Sans", sans-serif;
	--font-mono: "JetBrains Mono", monospace;
	--green: #3dd68c;
	--red: #f87171;
	--orange: #fb923c;
	--text: #e2e4ec;
	--text-muted: #6b7280;
	--text-dim: #3d4351;
	--radius: 10px;
	--radius-sm: 6px;
	--shadow: 0 4px 32px #00000060;
	--transition: 150ms ease;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-display);
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
	font-size: 15px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

/* ---- Background Effects ---- */

.bg-grid {
	position: fixed;
	inset: 0;
	pointer-events: none;
	z-index: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.bg-glow {
	position: fixed;
	border-radius: 50%;
	pointer-events: none;
	z-index: 0;
	filter: blur(120px);
	opacity: 0.14;
}
.bg-glow--1 {
	width: 600px;
	height: 600px;
	background: var(--accent);
	top: -200px;
	right: -150px;
}
.bg-glow--2 {
	width: 500px;
	height: 500px;
	background: var(--accent2);
	bottom: 20%;
	left: -200px;
}

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar {
	width: 6px;
	height: 6px;
}
::-webkit-scrollbar-track {
	background: transparent;
}
::-webkit-scrollbar-thumb {
	background: var(--border-soft);
	border-radius: 99px;
}

/* HEADER */
.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(10, 10, 10, 0.85);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 28px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.logo {
	display: flex;
	align-items: center;
	gap: 10px;
	font-family: var(--font-display);
	font-weight: 700;
	font-size: 17px;
	letter-spacing: -0.02em;
	color: var(--text);
}

.header-nav {
	display: flex;
	align-items: center;
	gap: 14px;
}
.header-nav a {
	text-decoration: none;
	margin-left: 15px;
}

.nav-tag {
	font-size: 13px;
	color: var(--text-muted);
	text-decoration: none;
	font-family: var(--font-mono);
	letter-spacing: 0.02em;
}
.nav__logo-bracket {
	color: var(--accent);
}

.btn-header {
	background: var(--accent);
	color: #0a0a0a;
	border: none;
	border-radius: var(--radius-sm);
	padding: 7px 16px;
	font-family: var(--font-display);
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
	transition:
		background 0.15s,
		transform 0.1s;
}
.btn-header:hover {
	background: var(--accent-dark);
	transform: translateY(-1px);
}
.btn-header:active {
	transform: scale(0.97);
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
	background: linear-gradient(180deg, var(--accent-glow) 0%, transparent 100%);
	border-bottom: 1px solid var(--border);
	padding: 3rem 1.5rem 2.5rem;
}
.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
}
.hero h1 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 600;
	letter-spacing: -0.03em;
	line-height: 1.15;
	margin-bottom: 0.75rem;
	color: var(--text);
}
.accent {
	color: var(--accent);
}
.hero-sub {
	color: var(--text-muted);
	font-size: 0.9rem;
	font-weight: 300;
	letter-spacing: 0.02em;
}

/* ─── Tab Bar ───────────────────────────────────────────────── */
.tab-bar-wrap {
	border-bottom: 1px solid var(--border);
	background: var(--bg);
	position: sticky;
	top: 57px;
	z-index: 90;
}
.tab-bar {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1.5rem;
	display: flex;
	gap: 0;
	overflow-x: auto;
}
.tab {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 1.25rem;
	background: none;
	border: none;
	border-bottom: 2px solid transparent;
	color: var(--text-muted);
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	white-space: nowrap;
	transition:
		color var(--transition),
		border-color var(--transition);
	margin-bottom: -1px;
}
.tab:hover {
	color: var(--text);
}
.tab.active {
	color: var(--text);
	border-bottom-color: var(--accent);
}
.tab-num {
	font-family: var(--front-mono);
	font-size: 0.7rem;
	color: var(--accent);
	opacity: 0.7;
}

/* ─── Main ──────────────────────────────────────────────────── */
.main-content {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1.5rem 4rem;
}

/* ─── Panels ────────────────────────────────────────────────── */
.panel {
	display: none;
	z-index: 1;
	position: relative;
}
.panel.active {
	display: block;
	animation: fadeIn 0.2s ease;
}

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

/* ─── Cards ─────────────────────────────────────────────────── */
.card {
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.75rem;
}
.card.full-width {
	width: 100%;
}
.card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.card-title {
	font-size: 1.05rem;
	font-weight: 600;
	letter-spacing: -0.02em;
}

/* ─── Mode Toggle ───────────────────────────────────────────── */
.mode-toggle {
	display: flex;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 3px;
	gap: 2px;
}
.mode-btn {
	padding: 0.3rem 0.85rem;
	border: none;
	border-radius: calc(var(--radius-sm) - 2px);
	background: transparent;
	color: var(--text-muted);
	font-family: var(--font-display);
	font-size: 0.8rem;
	font-weight: 500;
	cursor: pointer;
	transition: all var(--transition);
}
.mode-btn.active {
	background: var(--accent);
	color: #fff;
}
.mode-btn:not(.active):hover {
	color: var(--text);
	background: var(--bg-hover);
}

/* ─── Options Row ───────────────────────────────────────────── */
.options-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
}
.option-chip {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.3rem 0.75rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: 99px;
	font-size: 0.8rem;
	color: var(--text-muted);
	cursor: pointer;
	transition: all var(--transition);
	user-select: none;
}
.option-chip:hover {
	border-color: var(--accent);
	color: var(--text);
}
.option-chip input {
	accent-color: var(--accent);
}

/* ─── IO Grid ───────────────────────────────────────────────── */
.io-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 1rem;
	align-items: start;
}
@media (max-width: 680px) {
	.io-grid {
		grid-template-columns: 1fr;
	}
	.io-center {
		flex-direction: row;
		justify-content: center;
	}
}

.io-box {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.io-label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
}
.io-actions {
	display: flex;
	align-items: center;
	gap: 0.4rem;
}

/* ─── Textarea / Code Area ──────────────────────────────────── */
.code-area {
	width: 100%;
	background: var(--bg-input);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.85rem 1rem;
	color: var(--text);
	font-family: var(--front-mono);
	font-size: 0.8rem;
	line-height: 1.6;
	resize: vertical;
	outline: none;
	transition: border-color var(--transition);
}
.code-area:focus {
	border-color: var(--accent);
}
.code-area.output-area {
	background: #0a0c0f;
	color: var(--accent);
	cursor: default;
}
.char-count {
	font-size: 0.72rem;
	color: var(--text-dim);
	font-family: var(--front-mono);
	text-align: right;
}

/* ─── Center Controls ───────────────────────────────────────── */
.io-center {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	padding-top: 2.5rem;
}
.convert-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition);
	box-shadow: 0 0 16px var(--accent-dim);
}
.convert-btn:hover {
	transform: scale(1.08);
	box-shadow: 0 0 24px var(--accent);
}
.swap-btn {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 1px solid var(--border);
	background: var(--bg-hover);
	color: var(--text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all var(--transition);
}
.swap-btn:hover {
	color: var(--text);
	border-color: var(--border-soft);
}

/* ─── Icon Buttons ──────────────────────────────────────────── */
.icon-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding: 0.25rem 0.6rem;
	background: var(--bg-hover);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	color: var(--text-muted);
	font-family: var(--font-display);
	font-size: 0.75rem;
	cursor: pointer;
	transition: all var(--transition);
	white-space: nowrap;
}
.icon-btn:hover {
	color: var(--text);
	border-color: var(--border-soft);
}
.primary-btn {
	padding: 0.5rem 1.25rem;
	background: var(--accent);
	border: none;
	border-radius: var(--radius-sm);
	color: #fff;
	font-family: var(--font-display);
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: all var(--transition);
	box-shadow: 0 0 12px var(--accent-dim);
}
.primary-btn:hover {
	opacity: 0.88;
	transform: translateY(-1px);
}
.link-btn {
	background: none;
	border: none;
	color: var(--accent);
	font-family: var(--font-display);
	font-size: inherit;
	cursor: pointer;
	text-decoration: underline;
}

/* ─── Stats Row ─────────────────────────────────────────────── */
.stats-row {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1.25rem;
}
.stat-chip {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	padding: 0.5rem 0.85rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	font-size: 0.72rem;
}
.stat-chip span {
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.stat-chip strong {
	font-family: var(--front-mono);
	font-size: 0.8rem;
	font-weight: 500;
	color: var(--text);
}

/* ─── Error Banner ──────────────────────────────────────────── */
.error-banner {
	margin-top: 1rem;
	padding: 0.75rem 1rem;
	background: #f8717118;
	border: 1px solid #f8717140;
	border-radius: var(--radius-sm);
	color: var(--red);
	font-size: 0.82rem;
	font-family: var(--front-mono);
}
.hidden {
	display: none !important;
}

/* ─── Sub-section ───────────────────────────────────────────── */
.sub-section {
	margin-top: 1.75rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--border);
}
.sub-section-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}
.sub-section-header h3 {
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ─── Params Table ──────────────────────────────────────────── */
.params-table {
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	overflow: hidden;
	font-size: 0.8rem;
}
.params-head,
.params-row {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 0;
}
.params-head {
	background: var(--bg);
	border-bottom: 1px solid var(--border);
}
.params-head span,
.params-row span {
	padding: 0.5rem 0.85rem;
	border-right: 1px solid var(--border);
	font-family: var(--front-mono);
	font-size: 0.75rem;
}
.params-head span {
	color: var(--text-muted);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.params-row {
	border-bottom: 1px solid var(--border);
}
.params-row:last-child {
	border-bottom: none;
}
.params-row:hover {
	background: var(--bg-hover);
}
.params-row span:first-child {
	color: var(--accent);
}
.params-row span:last-child {
	border-right: none;
	color: var(--text-muted);
}

/* ─── JWT ───────────────────────────────────────────────────── */
.jwt-input {
	font-size: 0.75rem;
}
.jwt-visual {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0;
	padding: 0.75rem 1rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	margin-bottom: 1.25rem;
	font-family: var(--front-mono);
	font-size: 0.72rem;
	word-break: break-all;
	line-height: 1.8;
}
.jwt-part {
	padding: 1px 4px;
	border-radius: 3px;
	cursor: default;
}
.header-part {
	color: #f87171;
	background: #f8717115;
}
.payload-part {
	color: #a78bfa;
	background: #a78bfa15;
}
.sig-part {
	color: #34d399;
	background: #34d39915;
}
.jwt-dot {
	color: var(--text-dim);
	padding: 0 2px;
}

.jwt-grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
@media (max-width: 700px) {
	.jwt-grid {
		grid-template-columns: 1fr;
	}
}
.jwt-section {
}
.jwt-section-label {
	font-size: 0.7rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.07em;
	margin-bottom: 0.4rem;
	padding: 0.25rem 0.5rem;
	border-radius: var(--radius-sm);
	display: inline-block;
}
.header-label {
	background: #f8717118;
	color: #f87171;
}
.payload-label {
	background: #a78bfa18;
	color: #a78bfa;
}
.sig-label {
	background: #34d39918;
	color: #34d399;
}
.json-display {
	background: var(--bg-input);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.75rem;
	font-family: var(--front-mono);
	font-size: 0.72rem;
	line-height: 1.65;
	color: var(--text);
	white-space: pre-wrap;
	word-break: break-word;
	overflow: auto;
	max-height: 280px;
}
.sig-display {
	color: var(--green);
}

.badge-row {
	display: flex;
	gap: 0.5rem;
}
.badge {
	padding: 0.2rem 0.65rem;
	border-radius: 99px;
	font-family: var(--front-mono);
	font-size: 0.7rem;
	font-weight: 700;
	background: var(--bg);
	border: 1px solid var(--border);
	color: var(--text-muted);
}
.badge.valid {
	background: #3dd68c18;
	border-color: #3dd68c40;
	color: var(--green);
}
.badge.expired {
	background: #f8717118;
	border-color: #f8717140;
	color: var(--red);
}
.badge.warning {
	background: #fb923c18;
	border-color: #fb923c40;
	color: var(--orange);
}

/* ─── File Drop ─────────────────────────────────────────────── */
.dropzone {
	border: 2px dashed var(--border-soft);
	border-radius: var(--radius);
	padding: 3rem 2rem;
	text-align: center;
	cursor: pointer;
	transition: all var(--transition);
	background: var(--bg);
}
.dropzone:hover,
.dropzone.drag-over {
	border-color: var(--accent);
	background: var(--accent-glow);
}
.dropzone-inner p {
	margin-top: 0.75rem;
	color: var(--text-muted);
	font-size: 0.875rem;
}
.dropzone-inner small {
	color: var(--text-dim);
	font-size: 0.75rem;
	margin-top: 0.35rem;
	display: block;
}
.file-info {
	margin-top: 1rem;
	padding: 0.85rem 1rem;
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
}
.file-info-row {
	display: flex;
	align-items: center;
	gap: 1rem;
}
.file-icon {
	font-size: 1.75rem;
}
.file-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}
.file-details strong {
	font-size: 0.875rem;
}
.file-details span {
	font-size: 0.75rem;
	color: var(--text-muted);
	font-family: var(--front-mono);
}

/* ─── Inline inputs ─────────────────────────────────────────── */
.inline-input {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.2rem 0.5rem;
	color: var(--text);
	font-family: var(--front-mono);
	font-size: 0.8rem;
	outline: none;
	width: 140px;
	transition: border-color var(--transition);
}
.inline-input:focus {
	border-color: var(--accent);
}
.inline-select {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.2rem 0.5rem;
	color: var(--text);
	font-family: var(--front-mono);
	font-size: 0.8rem;
	outline: none;
	cursor: pointer;
	transition: border-color var(--transition);
}
.inline-select:focus {
	border-color: var(--accent);
}

/* ─── Data URI ──────────────────────────────────────────────── */
.datauri-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
	margin-bottom: 1.25rem;
}
@media (max-width: 700px) {
	.datauri-grid {
		grid-template-columns: 1fr;
	}
}
.duri-meta {
	background: var(--bg);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 1rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.meta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.75rem;
}
.meta-item {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}
.meta-item span {
	font-size: 0.72rem;
	color: var(--text-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.meta-item strong {
	font-family: var(--front-mono);
	font-size: 0.8rem;
}
.preview-box {
	grid-column: 1 / -1;
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 1rem;
	background: var(--bg);
}
.preview-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin-bottom: 0.75rem;
}
.duri-preview-area {
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: var(--radius-sm);
	overflow: auto;
}
.duri-preview-area img {
	max-width: 100%;
	max-height: 200px;
	border-radius: var(--radius-sm);
}
.duri-preview-area pre {
	font-family: var(--front-mono);
	font-size: 0.75rem;
	color: var(--text);
	white-space: pre-wrap;
	word-break: break-word;
}
.preview-placeholder {
	color: var(--text-dim);
	font-size: 0.8rem;
}

/* ─── Diff ──────────────────────────────────────────────────── */
.diff-result {
	margin-top: 1.5rem;
}
.diff-cols {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}
@media (max-width: 600px) {
	.diff-cols {
		grid-template-columns: 1fr;
	}
}
.diff-label {
	font-size: 0.72rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--text-muted);
	margin-bottom: 0.5rem;
}
.diff-content {
	background: var(--bg-input);
	border: 1px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 0.85rem;
	font-family: var(--front-mono);
	font-size: 0.78rem;
	line-height: 1.65;
	min-height: 100px;
	white-space: pre-wrap;
	word-break: break-word;
	max-height: 280px;
	overflow: auto;
}
.diff-add {
	background: #3dd68c22;
	color: var(--green);
}
.diff-del {
	background: #f8717122;
	color: var(--red);
	text-decoration: line-through;
}
.diff-eq {
	color: var(--text);
}

/* ─── Toast ─────────────────────────────────────────────────── */
.toast {
	position: fixed;
	bottom: 2rem;
	left: 50%;
	transform: translateX(-50%);
	background: var(--bg-card);
	border: 1px solid var(--border);
	border-radius: 99px;
	padding: 0.55rem 1.25rem;
	font-size: 0.82rem;
	color: var(--text);
	z-index: 999;
	box-shadow: var(--shadow);
	animation: toastIn 0.2s ease;
	white-space: nowrap;
}
.toast.success {
	border-color: var(--green);
	color: var(--green);
}
.toast.error {
	border-color: var(--red);
	color: var(--red);
}
@keyframes toastIn {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}

/* ---- Footer ---- */
.footer {
	background: var(--surface-2);
	border-top: 1px solid var(--border);
	padding: 20px 16px;
	text-align: center;
	z-index: 10;
}

.footer-inner {
	max-width: var(--content-width);
	margin: 0 auto;
}
.footer-inner span {
	font-size: 12px;
	color: var(--text-muted);
}
.footer-inner a {
	color: var(--accent);
	text-decoration: none;
}
.footer-inner a:hover {
	text-decoration: underline;
}
.footer__logo {
	font-family: var(--font-mono);
	font-size: 1rem;
	color: var(--text);
	margin-bottom: 0.75rem;
}
.footer__logo a {
	color: var(--text);
	text-decoration: none;
	cursor: pointer;
}
.footer__logo a:hover {
	text-decoration: underline;
}

.cursor-glow {
	position: fixed;
	left: 0;
	top: 0;
	width: 260px;
	height: 260px;
	pointer-events: none;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(0, 200, 150, 0.22) 0%, transparent 60%);
	filter: blur(18px);
	opacity: 0;
	transform: translate(-50%, -50%);
	transition: opacity 0.24s ease;
	mix-blend-mode: screen;
	z-index: 9999;
}
