/* PropFirm Experts — premium homepage (front page only). Builds on pfe.css tokens and buttons. */

/* ---------- Hero ---------- */

.pfx-hero {
	position: relative;
	isolation: isolate;
	overflow: hidden;
	padding-block: clamp(3.5rem, 2.5rem + 4vw, 6.5rem) clamp(3rem, 2rem + 3vw, 5rem);
	color: #e2e8f0;
	background:
		radial-gradient(900px 480px at 82% -5%, rgb(52 211 153 / 0.24), transparent 62%),
		radial-gradient(720px 520px at -5% 105%, rgb(255 176 32 / 0.1), transparent 60%),
		linear-gradient(165deg, #070c17 0%, #0b1220 48%, #06231c 100%);
}

.pfx-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background-image:
		linear-gradient(rgb(255 255 255 / 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgb(255 255 255 / 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
	-webkit-mask-image: radial-gradient(ellipse at 65% 35%, #000 20%, transparent 72%);
	mask-image: radial-gradient(ellipse at 65% 35%, #000 20%, transparent 72%);
}

.pfx-hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 1rem + 3vw, 4.5rem);
	align-items: center;
	width: min(1240px, calc(100% - 2 * var(--pfe-gutter)));
	margin-inline: auto;
}

.entry-content .pfx-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
	margin: 0 0 1.4rem;
	padding: 0.35rem 0.9rem 0.35rem 0.35rem;
	font-size: 0.82rem;
	font-weight: 600;
	color: #d1fae5;
	background: rgb(255 255 255 / 0.06);
	border: 1px solid rgb(255 255 255 / 0.12);
	border-radius: 999px;
}

.pfx-kicker b {
	padding: 0.18rem 0.6rem;
	font-size: 0.68rem;
	letter-spacing: 0.09em;
	text-transform: uppercase;
	color: #062a21;
	background: var(--global-palette10);
	border-radius: 999px;
}

.entry-content .pfx-h1 {
	margin: 0 0 1.3rem;
	font-family: var(--pfe-display);
	font-size: clamp(2.9rem, 1.6rem + 4.8vw, 5.7rem);
	font-weight: 800;
	line-height: 0.93;
	text-transform: uppercase;
	color: #fff;
}

.pfx-h1 em {
	display: block;
	font-style: normal;
	color: transparent;
	background: linear-gradient(95deg, #34d399 0%, #a7f3d0 48%, #ffb020 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.entry-content .pfx-lead {
	max-width: 36rem;
	margin: 0 0 2rem;
	font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
	line-height: 1.6;
	color: #cbd5e1;
}

.pfx-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	margin-bottom: 2.4rem;
}

.pfx-hero .pfe-btn--primary,
.pfx-hero .pfe-btn--primary:visited,
.pfx-cta .pfe-btn--primary,
.pfx-cta .pfe-btn--primary:visited {
	color: var(--global-palette3);
	background: var(--global-palette10);
	box-shadow: 0 12px 30px -12px rgb(52 211 153 / 0.7);
}

.pfx-hero .pfe-btn--primary:hover,
.pfx-cta .pfe-btn--primary:hover {
	color: var(--global-palette3);
	background: #6ee7b7;
}

.entry-content .pfx-stats {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
	max-width: 34rem;
	margin: 0;
	padding-top: 1.4rem;
	border-top: 1px solid rgb(255 255 255 / 0.1);
}

.pfx-stats dt {
	order: 2;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #94a3b8;
}

.pfx-stats div {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.pfx-stats dd {
	margin: 0;
	font-family: var(--pfe-display);
	font-size: clamp(2rem, 1.6rem + 1.2vw, 2.7rem);
	font-weight: 800;
	line-height: 1;
	color: #fff;
}

/* Partner-code board */

.pfx-board {
	position: relative;
	padding: 1.25rem;
	background: linear-gradient(180deg, rgb(255 255 255 / 0.09), rgb(255 255 255 / 0.03));
	border: 1px solid rgb(255 255 255 / 0.12);
	border-radius: 24px;
	box-shadow: 0 50px 90px -45px rgb(0 0 0 / 0.85), inset 0 1px 0 rgb(255 255 255 / 0.08);
}

/* Static gradient edge. No animated custom property or backdrop blur: both repaint the board every frame. */
.pfx-board::before {
	content: "";
	position: absolute;
	inset: -1px;
	padding: 1px;
	border-radius: inherit;
	background: conic-gradient(from 200deg, transparent 0 52%, #34d399 74%, #ffb020 88%, transparent 100%);
	-webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.pfx-board-head,
.pfx-board-foot {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.4rem 1rem;
}

.pfx-board-head {
	margin-bottom: 0.9rem;
	font-size: 0.74rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.pfx-dot {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	color: var(--global-palette10);
}

.pfx-dot::before,
.pfx-dot::after {
	content: "";
	width: 7px;
	height: 7px;
	background: currentColor;
	border-radius: 50%;
}

/* Pulse ring on transform and opacity only, so it runs on the compositor. */
.pfx-dot::after {
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -3.5px;
	opacity: 0;
	animation: pfx-pulse 2.4s ease-out infinite;
}

@keyframes pfx-pulse {
	0% {
		opacity: 0.6;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(3);
	}
}

.pfx-board-list {
	display: grid;
	gap: 0.5rem;
}

.pfx-board-row {
	display: grid;
	grid-template-columns: 36px minmax(0, 1fr) auto auto;
	gap: 0.75rem;
	align-items: center;
	padding: 0.6rem 0.75rem;
	text-decoration: none;
	background: rgb(255 255 255 / 0.04);
	border: 1px solid rgb(255 255 255 / 0.06);
	border-radius: 14px;
	transition: background-color 180ms ease, border-color 180ms ease, transform 180ms var(--pfe-ease);
}

.pfx-board-row:hover {
	background: rgb(255 255 255 / 0.08);
	border-color: rgb(52 211 153 / 0.45);
	transform: translateX(3px);
}

.pfx-board-row img {
	width: 36px;
	height: 36px;
	border-radius: 10px;
}

.pfx-board-firm {
	display: flex;
	flex-direction: column;
	min-width: 0;
	line-height: 1.2;
}

.pfx-board-firm strong {
	overflow: hidden;
	font-size: 0.95rem;
	white-space: nowrap;
	text-overflow: ellipsis;
	color: #fff;
}

.pfx-board-firm span {
	font-size: 0.72rem;
	color: #94a3b8;
}

.pfx-board-code {
	padding: 0.2rem 0.55rem;
	font: 800 0.85rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
	color: var(--global-palette3);
	background: var(--global-palette15);
	border-radius: 7px;
}

.pfx-board-pct {
	font-family: var(--pfe-display);
	font-size: 1.3rem;
	font-weight: 800;
	white-space: nowrap;
	color: var(--global-palette10);
}

.pfx-board-note {
	font-size: 0.72rem;
	white-space: nowrap;
	color: #94a3b8;
}

.pfx-board-foot {
	margin-top: 1rem;
	font-size: 0.82rem;
	color: #94a3b8;
}

.pfx-board-foot a {
	font-weight: 700;
	color: var(--global-palette10);
	text-decoration: none;
}

.pfx-board-foot a::after {
	content: " →";
}

@media (max-width: 960px) {
	.pfx-hero-grid {
		grid-template-columns: minmax(0, 1fr);
	}
}

@media (max-width: 520px) {
	.pfx-board {
		padding: 1rem;
	}

	.pfx-board-row {
		gap: 0.6rem;
		padding: 0.55rem 0.65rem;
	}

	.pfx-board-row img {
		width: 32px;
		height: 32px;
	}

	.pfx-board-pct {
		font-size: 1.1rem;
	}

	.pfx-board-note {
		display: none;
	}

	.entry-content .pfx-stats {
		gap: 0.6rem;
	}
}

/* ---------- Logo marquee ---------- */

.pfx-marquee {
	position: relative;
	overflow: hidden;
	padding-block: 1.5rem;
	background: #070c17;
	border-block: 1px solid rgb(255 255 255 / 0.06);
}

/* Edge fades painted in the band colour, so they never wash over the page background. */
.pfx-marquee::before,
.pfx-marquee::after {
	content: "";
	position: absolute;
	inset-block: 0;
	z-index: 1;
	width: min(12vw, 140px);
	pointer-events: none;
}

.pfx-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #070c17, transparent);
}

.pfx-marquee::after {
	right: 0;
	background: linear-gradient(270deg, #070c17, transparent);
}

.pfx-marquee-track {
	display: flex;
	width: max-content;
	animation: pfx-marquee 70s linear infinite;
	will-change: transform;
}

.pfx-marquee:hover .pfx-marquee-track {
	animation-play-state: paused;
}

.entry-content .pfx-marquee-list {
	display: flex;
	gap: 2.4rem;
	margin: 0;
	padding: 0 1.2rem;
	list-style: none;
}

.entry-content .pfx-marquee-list li {
	margin: 0;
}

.pfx-marquee-item {
	display: inline-flex;
	align-items: center;
	gap: 0.65rem;
	font-size: 0.92rem;
	font-weight: 600;
	white-space: nowrap;
	color: #cbd5e1;
	text-decoration: none;
	opacity: 0.8;
	transition: opacity 160ms ease, color 160ms ease;
}

a.pfx-marquee-item:hover {
	color: #fff;
	opacity: 1;
}

.pfx-marquee-item img {
	width: 32px;
	height: 32px;
	border-radius: 9px;
}

@keyframes pfx-marquee {
	to {
		transform: translateX(-50%);
	}
}

/* ---------- Sections ---------- */

.pfx-section {
	padding-top: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
}

.pfx-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 1.25rem 2rem;
	margin-bottom: 2rem;
}

.entry-content .pfx-eyebrow {
	margin: 0 0 0.6rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--global-palette1);
}

.entry-content .pfx-title {
	margin: 0;
	font-family: var(--pfe-display);
	font-size: clamp(2.2rem, 1.5rem + 2.2vw, 3.4rem);
	font-weight: 800;
	line-height: 0.98;
	text-transform: uppercase;
	color: var(--global-palette3);
}

.pfx-title span {
	color: var(--global-palette1);
}

.entry-content .pfx-sub {
	max-width: 36rem;
	margin: 0.8rem 0 0;
	color: var(--global-palette5);
}

/* Market filter */

.pfx-tabs {
	display: inline-flex;
	gap: 0.3rem;
	padding: 0.3rem;
	background: var(--global-palette8);
	border: 1px solid var(--global-palette7);
	border-radius: 999px;
}

.pfx-tab {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	min-height: 42px;
	padding: 0.5rem 1.05rem;
	font: inherit;
	font-size: 0.92rem;
	font-weight: 700;
	color: var(--global-palette4);
	cursor: pointer;
	background: transparent;
	border: 0;
	border-radius: 999px;
	transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.pfx-tab span {
	padding: 0.05rem 0.45rem;
	font-size: 0.74rem;
	color: var(--global-palette5);
	background: var(--global-palette7);
	border-radius: 999px;
}

.pfx-tab:hover {
	color: var(--global-palette3);
}

.pfx-tab.is-active {
	color: #fff;
	background: var(--global-palette3);
	box-shadow: 0 8px 18px -10px rgb(11 18 32 / 0.7);
}

.pfx-tab.is-active span {
	color: var(--global-palette3);
	background: var(--global-palette10);
}

.pfx-tab:focus-visible {
	outline: 3px solid var(--global-palette1);
	outline-offset: 2px;
}

/* Firm cards */

.pfx-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
	gap: 1.1rem;
}

.pfx-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.95rem;
	padding: 1.35rem;
	overflow: hidden;
	background: var(--global-palette9);
	border: 1px solid var(--global-palette7);
	border-radius: 20px;
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.04), 0 16px 36px -28px rgb(15 23 42 / 0.3);
	transition: transform 220ms var(--pfe-ease), box-shadow 220ms ease, border-color 220ms ease;
}

.pfx-card::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 4px;
	background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.pfx-card[data-market="futures"]::before {
	background: linear-gradient(90deg, #d97706, #ffb020);
}

.pfx-card[hidden],
.pfx-more[hidden] {
	display: none;
}

.pfx-more-wrap {
	display: flex;
	justify-content: center;
}

.pfx-more {
	margin-top: 1.6rem;
	cursor: pointer;
	font: inherit;
	font-weight: 700;
}

.pfx-card-head {
	display: flex;
	gap: 0.9rem;
	align-items: center;
}

.pfx-card-head img {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	box-shadow: 0 8px 18px -10px rgb(15 23 42 / 0.55);
}

.entry-content .pfx-card h3 {
	margin: 0 0 0.3rem;
	font-size: 1.55rem;
	line-height: 1;
}

.pfx-card h3 a {
	color: var(--global-palette3);
	text-decoration: none;
}

/* The firm name link covers the whole card; the deal and buttons sit above it. */
.pfx-card h3 a::after {
	content: "";
	position: absolute;
	inset: 0;
}

.entry-content .pfx-card-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
	margin: 0;
}

.pfx-card-facts div {
	padding: 0.55rem 0.7rem;
	background: var(--global-palette8);
	border-radius: 10px;
}

.pfx-card-facts dt {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--global-palette5);
}

.pfx-card-facts dd {
	margin: 0;
	font-weight: 700;
	color: var(--global-palette3);
}

.entry-content .pfx-card-programs {
	display: -webkit-box;
	margin: 0;
	overflow: hidden;
	font-size: 0.85rem;
	color: var(--global-palette5);
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}

.pfx-card-deal {
	position: relative;
	z-index: 1;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 0.6rem;
	margin-top: auto;
	padding: 0.7rem 0.85rem;
	color: #e2e8f0;
	background: linear-gradient(135deg, #111c2e 0%, #0b1220 70%, #07261e 100%);
	border-radius: 12px;
}

.pfx-card-label {
	font-size: 0.66rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.pfx-card-deal code {
	padding: 0.12rem 0.55rem;
	font: 800 1rem/1.3 ui-monospace, SFMono-Regular, Menlo, monospace;
	color: var(--global-palette3);
	background: var(--global-palette15);
	border-radius: 7px;
}

.pfx-card-pct {
	margin-left: auto;
	font-family: var(--pfe-display);
	font-size: 1.35rem;
	font-weight: 800;
	color: var(--global-palette10);
}

.pfx-card-note {
	margin-left: auto;
	font-size: 0.74rem;
	color: #94a3b8;
}

.pfx-card-deal--none {
	background: var(--global-palette8);
}

.pfx-card-deal--none .pfx-card-label {
	color: var(--global-palette5);
}

.pfx-card-cta {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.5rem;
}

.pfe-btn--line,
.pfe-btn--line:visited {
	color: var(--global-palette3);
	background: transparent;
	border-color: var(--global-palette7);
}

.pfe-btn--line:hover {
	color: var(--global-palette3);
	border-color: var(--global-palette3);
}

/* Method steps */

.pfx-steps {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.pfx-step {
	position: relative;
	overflow: hidden;
	padding: 1.6rem 1.4rem;
	color: #cbd5e1;
	background: radial-gradient(260px 160px at 100% 0%, rgb(52 211 153 / 0.14), transparent 70%), linear-gradient(160deg, #0f1a2c, #0b1220 75%);
	border: 1px solid rgb(255 255 255 / 0.06);
	border-radius: 20px;
}

.pfx-step-num {
	display: block;
	margin-bottom: 1.5rem;
	font-family: var(--pfe-display);
	font-size: 3.4rem;
	font-weight: 800;
	line-height: 1;
	color: transparent;
	-webkit-text-stroke: 1.5px rgb(52 211 153 / 0.75);
}

.entry-content .pfx-step h3 {
	margin: 0 0 0.5rem;
	font-size: 1.45rem;
	text-transform: uppercase;
	color: #fff;
}

.entry-content .pfx-step p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.55;
}

@media (max-width: 960px) {
	.pfx-steps {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 560px) {
	.pfx-steps {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Market panels */

.pfx-markets {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.1rem;
}

.pfx-market {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-height: 340px;
	padding: clamp(1.6rem, 1rem + 2vw, 2.6rem);
	overflow: hidden;
	color: #e2e8f0;
	text-decoration: none;
	background: radial-gradient(520px 280px at 100% 0%, rgb(96 165 250 / 0.35), transparent 60%), linear-gradient(150deg, #0d1b3d 0%, #0b1220 72%);
	border-radius: 26px;
	transition: transform 220ms var(--pfe-ease), box-shadow 220ms ease;
}

.pfx-market--futures {
	background: radial-gradient(520px 280px at 100% 0%, rgb(255 176 32 / 0.32), transparent 60%), linear-gradient(150deg, #2a1a06 0%, #0b1220 72%);
}

.pfx-market:hover {
	color: #e2e8f0;
	box-shadow: 0 30px 60px -36px rgb(11 18 32 / 0.8);
	transform: translateY(-3px);
}

.pfx-market-count {
	font-family: var(--pfe-display);
	font-size: clamp(3.6rem, 2.6rem + 3vw, 5.2rem);
	font-weight: 800;
	line-height: 0.88;
	color: #fff;
}

.pfx-market-count small {
	display: block;
	margin-top: 0.5rem;
	font-family: Inter, "Inter Fallback", system-ui, sans-serif;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #94a3b8;
}

.entry-content .pfx-market h3 {
	margin: 0;
	font-size: 2.1rem;
	text-transform: uppercase;
	color: #fff;
}

.pfx-market p {
	max-width: 30rem;
	margin: 0;
	color: #cbd5e1;
}

.pfx-market-logos {
	display: flex;
	align-items: center;
	margin-top: auto;
	padding-left: 10px;
}

.pfx-market-logos img {
	width: 44px;
	height: 44px;
	margin-left: -10px;
	border: 2px solid #0b1220;
	border-radius: 12px;
}

.pfx-market-more {
	display: grid;
	place-items: center;
	width: 44px;
	height: 44px;
	margin-left: -10px;
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--global-palette3);
	background: #fff;
	border: 2px solid #0b1220;
	border-radius: 12px;
}

.pfx-market-link {
	font-weight: 700;
	color: #fff;
}

.pfx-market-link::after {
	content: " →";
}

@media (max-width: 760px) {
	.pfx-markets {
		grid-template-columns: minmax(0, 1fr);
	}

	.pfx-market {
		min-height: 0;
	}
}

/* FAQ */

.pfx-faq-head {
	margin-bottom: 1rem;
}

.home .rank-math-faq-item {
	padding: 1.1rem 0;
}

.home .entry-content .rank-math-question {
	font-size: 1.35rem;
}

/* Closing call to action */

.pfx-cta {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) auto;
	gap: 1.5rem 3rem;
	align-items: center;
	margin-block: clamp(3.5rem, 2.5rem + 3vw, 5.5rem) 1.5rem;
	padding: clamp(1.8rem, 1rem + 3vw, 3.4rem);
	color: #e2e8f0;
	background: radial-gradient(640px 320px at 100% 100%, rgb(52 211 153 / 0.26), transparent 60%), linear-gradient(135deg, #111c2e 0%, #0b1220 60%, #06231c 100%);
	border-radius: 28px;
}

.entry-content .pfx-cta h2 {
	margin: 0.2rem 0 0.7rem;
	font-family: var(--pfe-display);
	font-size: clamp(2.1rem, 1.4rem + 2.2vw, 3.2rem);
	font-weight: 800;
	line-height: 0.98;
	text-transform: uppercase;
	color: #fff;
}

.entry-content .pfx-cta p {
	margin: 0;
	color: #cbd5e1;
}

.entry-content .pfx-cta .pfx-eyebrow {
	color: var(--global-palette10);
}

.pfx-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

@media (max-width: 760px) {
	.pfx-cta {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* ---------- Reveal on scroll (only once the script has run) ---------- */

.pfx-js .pfx-reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity 520ms var(--pfe-ease), transform 520ms var(--pfe-ease), box-shadow 220ms ease, border-color 220ms ease;
}

.pfx-js .pfx-reveal.is-visible {
	opacity: 1;
	transform: none;
}

.pfx-js .pfx-grid > .pfx-card:nth-child(3n + 2) {
	transition-delay: 70ms;
}

.pfx-js .pfx-grid > .pfx-card:nth-child(3n + 3) {
	transition-delay: 140ms;
}

.pfx-card:hover,
.pfx-js .pfx-card.pfx-reveal.is-visible:hover {
	border-color: rgb(4 120 87 / 0.35);
	box-shadow: 0 1px 2px rgb(15 23 42 / 0.04), 0 30px 54px -32px rgb(15 23 42 / 0.5);
	transform: translateY(-4px);
	transition-delay: 0ms;
}

@media (prefers-reduced-motion: reduce) {
	.pfx-dot::after {
		animation: none;
	}

	.pfx-marquee {
		overflow-x: auto;
	}

	.pfx-marquee-track {
		animation: none;
	}

	.pfx-marquee-list[aria-hidden="true"] {
		display: none;
	}

	.pfx-js .pfx-reveal,
	.pfx-card,
	.pfx-market,
	.pfx-board-row {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.pfx-card:hover,
	.pfx-market:hover,
	.pfx-board-row:hover {
		transform: none;
	}
}
