:root {
	--fx-bg: #050c0a;
	--fx-bg-soft: #08130f;
	--fx-surface: #0c1914;
	--fx-surface-raised: #10211a;
	--fx-text: #f4f7f5;
	--fx-muted: #a8b7af;
	--fx-line: rgba(232, 245, 237, 0.12);
	--fx-green: #36d481;
	--fx-green-bright: #51e895;
	--fx-orange: #ff7008;
	--fx-red: #f04444;
	--fx-lime: #9ddd33;
	--fx-shell: 1200px;
	--fx-radius: 22px;
	--fx-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}

body.fxpip-custom-ui {
	margin: 0;
	background: var(--fx-bg);
	color: var(--fx-text);
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

.fxpip-custom-ui *,
.fxpip-custom-ui *::before,
.fxpip-custom-ui *::after {
	box-sizing: border-box;
}

.fxpip-custom-ui .fxpip-ui {
	position: relative;
	isolation: isolate;
	min-height: 100vh;
	overflow: clip;
	background: var(--fx-bg);
}

.fxpip-custom-ui .fxpip-ui::before,
.fxpip-custom-ui .fxpip-ui::after {
	position: fixed;
	inset: -110px;
	z-index: 0;
	content: "";
	pointer-events: none;
}

.fxpip-custom-ui .fxpip-ui::before {
	background:
		linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
	background-size: 56px 56px;
	animation: fxpip-grid-drift 24s linear infinite;
}

.fxpip-custom-ui .fxpip-ui::after {
	background:
		radial-gradient(circle at 16% 20%, rgba(54, 212, 129, 0.08), transparent 24%),
		radial-gradient(circle at 82% 14%, rgba(255, 112, 8, 0.07), transparent 23%),
		radial-gradient(circle at 65% 76%, rgba(54, 212, 129, 0.045), transparent 27%);
	animation: fxpip-aurora-shift 18s ease-in-out infinite alternate;
}

.fxpip-custom-ui .fxpip-ui > main,
.fxpip-custom-ui .fxpip-ui > footer {
	position: relative;
	z-index: 1;
}

.fxpip-custom-ui .fxpip-shell {
	width: min(calc(100% - 48px), var(--fx-shell));
	margin-inline: auto;
}

.fxpip-custom-ui h1,
.fxpip-custom-ui h2,
.fxpip-custom-ui h3,
.fxpip-custom-ui p {
	margin-top: 0;
}

.fxpip-custom-ui h1,
.fxpip-custom-ui h2,
.fxpip-custom-ui h3 {
	color: var(--fx-text);
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1.06;
}

.fxpip-custom-ui a {
	color: inherit;
	text-decoration: none;
}

.fxpip-custom-ui .fxpip-skip-link {
	position: fixed;
	top: 12px;
	left: 12px;
	z-index: 10000;
	padding: 10px 14px;
	background: var(--fx-text);
	color: var(--fx-bg);
	border-radius: 8px;
	transform: translateY(-160%);
}

.fxpip-custom-ui .fxpip-skip-link:focus {
	transform: translateY(0);
}

.fxpip-custom-ui .fxpip-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	border-bottom: 1px solid var(--fx-line);
	background: rgba(5, 12, 10, 0.84);
	box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

/* Keep the sticky header below WordPress's toolbar for signed-in users. */
.fxpip-custom-ui.admin-bar .fxpip-header {
	top: 32px;
}

.fxpip-custom-ui .fxpip-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 76px;
	gap: 26px;
}

.fxpip-custom-ui .fxpip-logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.fxpip-custom-ui .fxpip-logo__art {
	position: relative;
	display: block;
	width: 190px;
	aspect-ratio: 425 / 108;
}

.fxpip-custom-ui .fxpip-logo__image {
	display: block;
	width: 100%;
	height: auto;
}

.fxpip-custom-ui .fxpip-logo__image--base {
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.58)) drop-shadow(0 0 6px rgba(54, 212, 129, 0.08));
}

.fxpip-custom-ui .fxpip-logo__image--collector-white {
	position: absolute;
	inset: 0;
	clip-path: inset(72.22% 10.82% 0 8.94%);
	filter: brightness(0) invert(1);
	pointer-events: none;
}

.fxpip-custom-ui .fxpip-nav {
	display: flex;
	align-items: center;
	gap: 25px;
}

.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button) {
	position: relative;
	color: #d9e3de;
	font-size: 14px;
	font-weight: 650;
	transition: color 180ms ease;
}

.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button)::before,
.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button)::after {
	position: absolute;
	left: 50%;
	content: "";
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%) scaleX(0.2);
	transition: background-color 180ms ease, box-shadow 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button)::before {
	bottom: -11px;
	width: 24px;
	height: 2px;
	border-radius: 999px;
}

.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button)::after {
	bottom: -14px;
	width: 11px;
	height: 8px;
	border-radius: 1px;
}

.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button):not([aria-current="page"]):hover,
.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button):not([aria-current="page"]):focus-visible {
	color: #ffd9d9;
}

.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button):not([aria-current="page"]):hover::before,
.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button):not([aria-current="page"]):hover::after,
.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button):not([aria-current="page"]):focus-visible::before,
.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button):not([aria-current="page"]):focus-visible::after {
	background: var(--fx-red);
	box-shadow: 0 0 12px rgba(240, 68, 68, 0.5);
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.fxpip-custom-ui .fxpip-nav > a[aria-current="page"] {
	color: var(--fx-green-bright);
}

.fxpip-custom-ui .fxpip-nav > a[aria-current="page"]::before,
.fxpip-custom-ui .fxpip-nav > a[aria-current="page"]::after {
	background: var(--fx-green-bright);
	box-shadow: 0 0 12px rgba(81, 232, 149, 0.5);
	opacity: 1;
	transform: translateX(-50%) scaleX(1);
}

.fxpip-custom-ui .fxpip-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 12px;
	border: 1px solid var(--fx-line);
	border-radius: 10px;
	background: var(--fx-surface);
	color: var(--fx-text);
	font: inherit;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.fxpip-custom-ui .fxpip-menu-toggle__lines {
	display: grid;
	gap: 5px;
	width: 20px;
}

.fxpip-custom-ui .fxpip-menu-toggle__lines i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease;
}

.fxpip-custom-ui .fxpip-menu-toggle[aria-expanded="true"] .fxpip-menu-toggle__lines i:first-child { transform: translateY(3.5px) rotate(45deg); }
.fxpip-custom-ui .fxpip-menu-toggle[aria-expanded="true"] .fxpip-menu-toggle__lines i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.fxpip-custom-ui .fxpip-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	gap: 11px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 760;
	line-height: 1;
	transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.fxpip-custom-ui .fxpip-button:hover,
.fxpip-custom-ui .fxpip-button:focus-visible {
	transform: translateY(-2px);
}

.fxpip-custom-ui .fxpip-button:focus-visible,
.fxpip-custom-ui a:focus-visible,
.fxpip-custom-ui button:focus-visible {
	outline: 3px solid rgba(54, 212, 129, 0.38);
	outline-offset: 3px;
}

.fxpip-custom-ui .fxpip-button--small {
	min-height: 42px;
	padding: 10px 16px;
}

.fxpip-custom-ui .fxpip-button--primary {
	background: var(--fx-green);
	color: #021008;
	box-shadow: 0 12px 38px rgba(54, 212, 129, 0.18);
}

.fxpip-custom-ui .fxpip-button--primary:hover,
.fxpip-custom-ui .fxpip-button--primary:focus-visible {
	background: var(--fx-green-bright);
	box-shadow: 0 15px 44px rgba(54, 212, 129, 0.28);
}

.fxpip-custom-ui .fxpip-button--ghost {
	border-color: var(--fx-line);
	background: rgba(255, 255, 255, 0.025);
	color: var(--fx-text);
}

.fxpip-custom-ui .fxpip-button--ghost:hover,
.fxpip-custom-ui .fxpip-button--ghost:focus-visible {
	border-color: rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.06);
}

.fxpip-custom-ui .fxpip-nav__account {
	border-color: rgba(54, 212, 129, 0.45);
	background: rgba(54, 212, 129, 0.08);
	color: var(--fx-green-bright);
}

.fxpip-custom-ui .fxpip-hero {
	position: relative;
	padding: clamp(10px, 1.5vw, 18px) 0 48px;
}

.fxpip-custom-ui .fxpip-hero__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(20px);
	pointer-events: none;
}

.fxpip-custom-ui .fxpip-hero__glow--green {
	top: 8%;
	right: -160px;
	width: 520px;
	height: 520px;
	background: radial-gradient(circle, rgba(54, 212, 129, 0.12), transparent 68%);
	animation: fxpip-glow-green 12s ease-in-out infinite alternate;
	will-change: transform;
}

.fxpip-custom-ui .fxpip-hero__glow--orange {
	bottom: -260px;
	left: -260px;
	width: 560px;
	height: 560px;
	background: radial-gradient(circle, rgba(255, 112, 8, 0.08), transparent 70%);
	animation: fxpip-glow-orange 15s ease-in-out infinite alternate;
	will-change: transform;
}

.fxpip-custom-ui .fxpip-hero__grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
	align-items: center;
	gap: clamp(38px, 5vw, 70px);
}

.fxpip-custom-ui .fxpip-eyebrow {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
	color: var(--fx-green-bright);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.17em;
	line-height: 1.3;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-eyebrow span {
	display: inline-block;
	width: 28px;
	height: 2px;
	background: currentColor;
}

.fxpip-custom-ui .fxpip-hero h1 {
	max-width: 760px;
	margin-bottom: 20px;
	font-size: clamp(46px, 5vw, 72px);
}

.fxpip-custom-ui .fxpip-hero h1 em {
	display: block;
	color: var(--fx-orange);
	font-style: normal;
}

.fxpip-custom-ui .fxpip-hero__intro {
	max-width: 640px;
	margin-bottom: 24px;
	color: var(--fx-muted);
	font-size: clamp(16px, 1.4vw, 18px);
	line-height: 1.6;
}

.fxpip-custom-ui .fxpip-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.fxpip-custom-ui .fxpip-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 24px;
	margin: 24px 0 0;
	padding: 0;
	color: #c4d0ca;
	font-size: 13px;
	font-weight: 650;
	list-style: none;
}

.fxpip-custom-ui .fxpip-proof li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.fxpip-custom-ui .fxpip-proof i {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--fx-green);
	box-shadow: 0 0 0 4px rgba(54, 212, 129, 0.12);
}

.fxpip-custom-ui .fxpip-market-card {
	position: relative;
	padding: 22px;
	border: 1px solid var(--fx-line);
	border-radius: var(--fx-radius);
	background: linear-gradient(145deg, rgba(16, 33, 26, 0.98), rgba(7, 17, 14, 0.98));
	box-shadow: var(--fx-shadow);
	animation: fxpip-card-float 8s ease-in-out infinite;
	will-change: transform;
}

.fxpip-custom-ui .fxpip-market-card::before {
	position: absolute;
	inset: -1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(135deg, rgba(54, 212, 129, 0.34), transparent 45%, rgba(255, 112, 8, 0.18));
	content: "";
	filter: blur(12px);
	opacity: 0.55;
}

.fxpip-custom-ui .fxpip-market-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
}

.fxpip-custom-ui .fxpip-market-card__top span,
.fxpip-custom-ui .fxpip-market-card__top strong {
	display: block;
}

.fxpip-custom-ui .fxpip-market-card__top span {
	margin-bottom: 4px;
	color: var(--fx-muted);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-market-card__top strong {
	font-size: 18px;
	letter-spacing: -0.02em;
}

.fxpip-custom-ui .fxpip-market-card__top b {
	padding: 6px 9px;
	border: 1px solid rgba(54, 212, 129, 0.28);
	border-radius: 999px;
	background: rgba(54, 212, 129, 0.09);
	color: var(--fx-green-bright);
	font-size: 10px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-chart {
	position: relative;
	margin: 20px -8px 10px;
	border-block: 1px solid rgba(255, 255, 255, 0.06);
	background:
		linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
	background-size: 50px 50px;
}

.fxpip-custom-ui .fxpip-chart svg {
	display: block;
	width: 100%;
	height: auto;
	overflow: visible;
}

.fxpip-custom-ui .fxpip-chart__fill { fill: url(#fxpip-chart-fill); }
.fxpip-custom-ui .fxpip-chart__line {
	fill: none;
	stroke: var(--fx-green);
	stroke-dasharray: 1400;
	stroke-dashoffset: 1400;
	stroke-linecap: round;
	stroke-width: 4;
	filter: drop-shadow(0 0 7px rgba(54, 212, 129, 0.38));
	animation: fxpip-chart-draw 2.4s 0.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.fxpip-custom-ui .fxpip-chart circle {
	fill: var(--fx-green-bright);
	stroke: #143324;
	stroke-width: 5;
	animation: fxpip-chart-pulse 2.6s ease-in-out infinite;
	transform-box: fill-box;
	transform-origin: center;
}

.fxpip-custom-ui .fxpip-process {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
}

.fxpip-custom-ui .fxpip-process > div {
	padding: 10px;
	border: 1px solid rgba(255, 255, 255, 0.07);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.025);
}

.fxpip-custom-ui .fxpip-process span,
.fxpip-custom-ui .fxpip-process strong,
.fxpip-custom-ui .fxpip-process small { display: block; }
.fxpip-custom-ui .fxpip-process span { margin-bottom: 12px; color: var(--fx-orange); font-size: 10px; font-weight: 800; }
.fxpip-custom-ui .fxpip-process strong { margin-bottom: 4px; font-size: 13px; }
.fxpip-custom-ui .fxpip-process small { color: var(--fx-muted); font-size: 10px; }

.fxpip-custom-ui .fxpip-section {
	position: relative;
	padding: 64px 0;
	border-top: 1px solid var(--fx-line);
}

.fxpip-custom-ui .fxpip-section--surface {
	background: rgba(10, 23, 18, 0.72);
}

.fxpip-custom-ui .fxpip-section-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
	align-items: end;
	gap: 56px;
	margin-bottom: 36px;
}

.fxpip-custom-ui .fxpip-section-heading h2,
.fxpip-custom-ui .fxpip-steps-copy h2,
.fxpip-custom-ui .fxpip-cta-panel h2 {
	margin-bottom: 0;
	font-size: clamp(34px, 3.6vw, 50px);
}

.fxpip-custom-ui .fxpip-section-heading > p,
.fxpip-custom-ui .fxpip-steps-copy > p,
.fxpip-custom-ui .fxpip-cta-panel p {
	margin-bottom: 0;
	color: var(--fx-muted);
	font-size: 16px;
}

.fxpip-custom-ui .fxpip-learn-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.fxpip-custom-ui .fxpip-content-card {
	position: relative;
	min-height: 300px;
	padding: clamp(28px, 3.3vw, 42px);
	border: 1px solid var(--fx-line);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(12, 28, 22, 0.96), rgba(6, 15, 12, 0.98));
	overflow: hidden;
}

.fxpip-custom-ui .fxpip-content-card::after {
	position: absolute;
	right: -100px;
	bottom: -120px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: currentColor;
	content: "";
	filter: blur(85px);
	opacity: 0.11;
	pointer-events: none;
}

.fxpip-custom-ui .fxpip-content-card--green { color: var(--fx-green); }
.fxpip-custom-ui .fxpip-content-card--orange { color: var(--fx-orange); }

.fxpip-custom-ui .fxpip-section--learn .fxpip-content-card {
	min-height: 270px;
}

.fxpip-custom-ui .fxpip-section--learn .fxpip-content-card > p {
	font-size: 16px;
	line-height: 1.75;
}

.fxpip-custom-ui .fxpip-content-card__lead strong {
	display: block;
	margin-bottom: 18px;
	color: var(--fx-text);
	font-size: clamp(28px, 3vw, 42px);
	font-weight: 760;
	letter-spacing: -0.045em;
	line-height: 1.06;
}

.fxpip-custom-ui .fxpip-content-card__label {
	display: block;
	margin-bottom: 70px;
	color: currentColor;
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-content-card h3 {
	max-width: 560px;
	margin-bottom: 18px;
	color: var(--fx-text);
	font-size: clamp(28px, 3vw, 42px);
}

.fxpip-custom-ui .fxpip-content-card > p {
	max-width: 610px;
	color: var(--fx-muted);
	font-size: 15px;
}

.fxpip-custom-ui .fxpip-content-card .fxpip-content-card__note {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid var(--fx-line);
	color: #aab9b1;
	font-size: 12px;
}

.fxpip-custom-ui .fxpip-tick-list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 28px 0 0;
	padding: 0;
	list-style: none;
}

.fxpip-custom-ui .fxpip-tick-list li {
	padding: 9px 12px;
	border: 1px solid rgba(54, 212, 129, 0.18);
	border-radius: 999px;
	background: rgba(54, 212, 129, 0.06);
	color: #b9cec3;
	font-size: 11px;
	font-weight: 720;
}

.fxpip-custom-ui .fxpip-profile-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 18px;
}

.fxpip-custom-ui .fxpip-profile-panel {
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid var(--fx-line);
	border-top-color: rgba(54, 212, 129, 0.55);
	border-radius: 22px;
	background: rgba(7, 18, 14, 0.82);
}

.fxpip-custom-ui .fxpip-profile-panel--accent {
	border-top-color: rgba(255, 112, 8, 0.7);
	background: linear-gradient(150deg, rgba(20, 25, 16, 0.92), rgba(7, 18, 14, 0.88));
}

.fxpip-custom-ui .fxpip-profile-panel h2,
.fxpip-custom-ui .fxpip-why-copy h2,
.fxpip-custom-ui .fxpip-live-card h2 {
	margin-bottom: 20px;
	font-size: clamp(32px, 3.4vw, 46px);
}

.fxpip-custom-ui .fxpip-profile-panel > p:not(.fxpip-eyebrow),
.fxpip-custom-ui .fxpip-why-copy > p:not(.fxpip-eyebrow),
.fxpip-custom-ui .fxpip-live-card > p {
	color: var(--fx-muted);
	font-size: 16px;
}

.fxpip-custom-ui .fxpip-profile-panel .fxpip-text-link { margin-top: 10px; }

.fxpip-custom-ui .fxpip-method-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 24px;
}

.fxpip-custom-ui .fxpip-method-tags span {
	padding: 9px 12px;
	border: 1px solid var(--fx-line);
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.025);
	color: #bed0c6;
	font-size: 11px;
	font-weight: 760;
}

.fxpip-custom-ui .fxpip-why-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.8fr) minmax(470px, 1fr);
	align-items: start;
	gap: clamp(40px, 6vw, 80px);
}

.fxpip-custom-ui .fxpip-outcome-list {
	margin: 30px 0 0;
	padding: 0;
	border-top: 1px solid var(--fx-line);
	list-style: none;
}

.fxpip-custom-ui .fxpip-outcome-list li {
	display: grid;
	grid-template-columns: 44px 1fr;
	align-items: center;
	gap: 18px;
	padding: 16px 0;
	border-bottom: 1px solid var(--fx-line);
}

.fxpip-custom-ui .fxpip-outcome-list li > span {
	display: grid;
	width: 36px;
	height: 36px;
	place-items: center;
	border: 1px solid rgba(54, 212, 129, 0.32);
	border-radius: 50%;
	color: var(--fx-green-bright);
	font-size: 10px;
	font-weight: 850;
}

.fxpip-custom-ui .fxpip-outcome-list strong,
.fxpip-custom-ui .fxpip-outcome-list small { display: block; }
.fxpip-custom-ui .fxpip-outcome-list strong { margin-bottom: 3px; font-size: 15px; }
.fxpip-custom-ui .fxpip-outcome-list small { color: var(--fx-muted); font-size: 12px; }

.fxpip-custom-ui .fxpip-live-card {
	position: relative;
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(255, 112, 8, 0.25);
	border-radius: 24px;
	background:
		radial-gradient(circle at 90% 8%, rgba(255, 112, 8, 0.11), transparent 30%),
		linear-gradient(145deg, rgba(14, 29, 23, 0.98), rgba(6, 16, 12, 0.98));
	box-shadow: var(--fx-shadow);
}

.fxpip-custom-ui .fxpip-live-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}

.fxpip-custom-ui .fxpip-live-card__top b {
	padding: 7px 10px;
	border: 1px solid rgba(239, 63, 66, 0.35);
	border-radius: 999px;
	background: rgba(239, 63, 66, 0.08);
	color: #ff7779;
	font-size: 10px;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-live-schedule {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-top: 24px;
}

.fxpip-custom-ui .fxpip-live-schedule > div {
	padding: 16px;
	border: 1px solid var(--fx-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.025);
}

.fxpip-custom-ui .fxpip-live-schedule span,
.fxpip-custom-ui .fxpip-live-schedule strong,
.fxpip-custom-ui .fxpip-live-schedule small { display: block; }
.fxpip-custom-ui .fxpip-live-schedule span { margin-bottom: 14px; color: var(--fx-orange); font-size: 11px; font-weight: 850; letter-spacing: 0.11em; text-transform: uppercase; }
.fxpip-custom-ui .fxpip-live-schedule strong { margin-bottom: 5px; font-size: 16px; }
.fxpip-custom-ui .fxpip-live-schedule small { color: var(--fx-muted); font-size: 11px; }

.fxpip-custom-ui .fxpip-live-card .fxpip-live-card__note {
	margin: 22px 0 0;
	color: #83968c;
	font-size: 11px;
}

.fxpip-custom-ui.admin-bar #membership { scroll-margin-top: 32px; }

.fxpip-custom-ui .fxpip-membership-card {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
	gap: clamp(30px, 4.5vw, 56px);
	padding: clamp(28px, 4vw, 46px);
	border: 1px solid rgba(54, 212, 129, 0.28);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(13, 31, 24, 0.98), rgba(5, 14, 11, 0.98));
	box-shadow: var(--fx-shadow);
}

.fxpip-custom-ui .fxpip-membership-card__offer {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.fxpip-custom-ui .fxpip-membership-card__price {
	margin-bottom: 18px;
	color: var(--fx-green-bright);
	font-size: clamp(68px, 7.5vw, 100px);
	font-weight: 760;
	letter-spacing: -0.07em;
	line-height: 0.9;
}

.fxpip-custom-ui .fxpip-membership-card__currency {
	font-size: 0.62em;
	vertical-align: 0.28em;
}

.fxpip-custom-ui .fxpip-membership-card__period {
	margin-left: 8px;
	color: var(--fx-muted);
	font-size: 0.2em;
	font-weight: 650;
	letter-spacing: 0;
	vertical-align: 0.24em;
	white-space: nowrap;
}

.fxpip-custom-ui .fxpip-membership-card__offer > p:not(.fxpip-membership-card__price) {
	margin-bottom: 26px;
	color: var(--fx-muted);
	font-size: 16px;
}

.fxpip-custom-ui .fxpip-membership-card__offer small {
	margin-top: 14px;
	color: #809188;
	font-size: 10px;
}

.fxpip-custom-ui .fxpip-membership-card__list {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--fx-line);
	list-style: none;
}

.fxpip-custom-ui .fxpip-membership-card__list li {
	position: relative;
	padding: 16px 0 16px 50px;
	border-bottom: 1px solid var(--fx-line);
	color: #dbe6e0;
	font-size: 17px;
	font-weight: 680;
}

.fxpip-custom-ui .fxpip-membership-card__list li::before {
	position: absolute;
	top: 13px;
	left: 0;
	display: grid;
	width: 34px;
	height: 34px;
	place-items: center;
	border: 1px solid rgba(255, 112, 8, 0.65);
	border-radius: 50%;
	color: var(--fx-orange);
	content: "\2713";
	font-size: 16px;
	font-weight: 900;
}

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

.fxpip-custom-ui .fxpip-feature-card {
	position: relative;
	min-height: 250px;
	padding: 24px;
	border: 1px solid var(--fx-line);
	border-radius: 18px;
	background: rgba(9, 20, 16, 0.86);
	overflow: hidden;
	transition: transform 180ms ease, border-color 180ms ease;
}

.fxpip-custom-ui .fxpip-feature-card:hover {
	transform: translateY(-5px);
	border-color: rgba(255, 255, 255, 0.22);
}

.fxpip-custom-ui .fxpip-feature-card::after {
	position: absolute;
	right: -60px;
	bottom: -80px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: currentColor;
	content: "";
	filter: blur(55px);
	opacity: 0.11;
}

.fxpip-custom-ui .fxpip-feature-card--green { color: var(--fx-green); }
.fxpip-custom-ui .fxpip-feature-card--orange { color: var(--fx-orange); }
.fxpip-custom-ui .fxpip-feature-card--red { color: var(--fx-red); }
.fxpip-custom-ui .fxpip-feature-card--lime { color: var(--fx-lime); }

.fxpip-custom-ui .fxpip-feature-card__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	margin-bottom: 44px;
	border: 1px solid currentColor;
	border-radius: 50%;
	font-size: 11px;
	font-weight: 850;
}

.fxpip-custom-ui .fxpip-feature-card h3 {
	margin-bottom: 14px;
	font-size: 24px;
}

.fxpip-custom-ui .fxpip-feature-card p {
	margin-bottom: 0;
	color: var(--fx-muted);
	font-size: 14px;
	line-height: 1.75;
}

.fxpip-custom-ui .fxpip-steps-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
	gap: clamp(48px, 7vw, 90px);
}

.fxpip-custom-ui .fxpip-steps-copy h2 {
	margin-bottom: 26px;
}

.fxpip-custom-ui .fxpip-steps-copy > p {
	margin-bottom: 30px;
}

.fxpip-custom-ui .fxpip-text-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--fx-green-bright);
	font-size: 14px;
	font-weight: 780;
}

.fxpip-custom-ui .fxpip-text-link span {
	font-size: 18px;
	transition: transform 180ms ease;
}

.fxpip-custom-ui .fxpip-text-link:hover span,
.fxpip-custom-ui .fxpip-text-link:focus-visible span { transform: translateX(4px); }

.fxpip-custom-ui .fxpip-steps {
	margin: 0;
	padding: 0;
	list-style: none;
}

.fxpip-custom-ui .fxpip-steps li {
	display: grid;
	grid-template-columns: 60px 1fr;
	gap: 24px;
	padding: 22px 0;
	border-bottom: 1px solid var(--fx-line);
}

.fxpip-custom-ui .fxpip-steps li:first-child { border-top: 1px solid var(--fx-line); }
.fxpip-custom-ui .fxpip-steps li > span {
	color: var(--fx-orange);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: 0.1em;
}
.fxpip-custom-ui .fxpip-steps h3 { margin-bottom: 8px; font-size: 24px; }
.fxpip-custom-ui .fxpip-steps p { margin-bottom: 0; color: var(--fx-muted); font-size: 15px; }

.fxpip-custom-ui .fxpip-risk-strip {
	padding: 30px 0 44px;
	border-top: 1px solid var(--fx-line);
}

.fxpip-custom-ui .fxpip-cta-panel {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
	align-items: center;
	gap: 70px;
	padding: clamp(36px, 6vw, 72px);
	border: 1px solid rgba(54, 212, 129, 0.24);
	border-radius: 24px;
	background: linear-gradient(130deg, rgba(16, 38, 28, 0.98), rgba(8, 20, 16, 0.98));
	overflow: hidden;
	box-shadow: var(--fx-shadow);
}

.fxpip-custom-ui .fxpip-cta-panel__glow {
	position: absolute;
	top: -180px;
	right: -100px;
	width: 440px;
	height: 440px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 112, 8, 0.17), transparent 66%);
	pointer-events: none;
}

.fxpip-custom-ui .fxpip-cta-panel h2 {
	margin-bottom: 22px;
}

.fxpip-custom-ui .fxpip-cta-panel__actions {
	position: relative;
	display: grid;
	gap: 18px;
	justify-items: start;
}

.fxpip-custom-ui .fxpip-risk-note {
	max-width: 900px;
	margin: 0 auto;
	color: #86978e;
	font-size: 12px;
	text-align: center;
}

.fxpip-custom-ui .fxpip-risk-note strong { color: #b8c7bf; }
.fxpip-custom-ui .fxpip-risk-note a { color: var(--fx-green); text-decoration: underline; text-underline-offset: 3px; }

.fxpip-custom-ui .fxpip-join-float {
	position: fixed;
	right: 24px;
	bottom: 24px;
	z-index: 10000;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: center;
	width: min(390px, calc(100vw - 48px));
	gap: 18px;
	padding: 14px 14px 14px 18px;
	border: 1px solid rgba(81, 232, 149, 0.3);
	border-radius: 18px;
	background: linear-gradient(135deg, rgba(15, 35, 27, 0.96), rgba(5, 14, 11, 0.96));
	box-shadow: 0 22px 65px rgba(0, 0, 0, 0.5), 0 0 32px rgba(54, 212, 129, 0.07);
	-webkit-backdrop-filter: blur(18px);
	backdrop-filter: blur(18px);
}

.fxpip-custom-ui .fxpip-join-float__copy {
	display: grid;
	min-width: 0;
	gap: 2px;
}

.fxpip-custom-ui .fxpip-join-float__copy span {
	color: var(--fx-green-bright);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-join-float__copy strong {
	overflow: hidden;
	color: var(--fx-text);
	font-size: 14px;
	line-height: 1.3;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.fxpip-custom-ui .fxpip-join-float__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	gap: 8px;
	padding: 11px 16px;
	border-radius: 11px;
	background: var(--fx-green);
	color: #021008;
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	white-space: nowrap;
	box-shadow: 0 10px 30px rgba(54, 212, 129, 0.2);
	transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.fxpip-custom-ui .fxpip-join-float__button:hover,
.fxpip-custom-ui .fxpip-join-float__button:focus-visible {
	background: var(--fx-green-bright);
	box-shadow: 0 13px 36px rgba(54, 212, 129, 0.3);
	transform: translateY(-2px);
}

.fxpip-custom-ui .fxpip-footer {
	padding: 76px 0 28px;
	border-top: 1px solid var(--fx-line);
	background: #030806;
}

.fxpip-custom-ui .fxpip-footer__grid {
	display: grid;
	grid-template-columns: minmax(300px, 1.8fr) 0.6fr 0.6fr;
	gap: 80px;
	padding-bottom: 56px;
}

.fxpip-custom-ui .fxpip-footer__brand p {
	max-width: 400px;
	margin: 22px 0 0;
	color: var(--fx-muted);
	font-size: 14px;
}

.fxpip-custom-ui .fxpip-social-links {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 24px;
}

.fxpip-custom-ui .fxpip-social-link {
	--fx-social-accent: var(--fx-green);
	display: grid;
	width: 44px;
	height: 44px;
	place-items: center;
	border: 1px solid var(--fx-line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.025);
	color: #aabbb2;
	transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fxpip-custom-ui .fxpip-social-link--youtube { --fx-social-accent: var(--fx-red); }
.fxpip-custom-ui .fxpip-social-link--instagram { --fx-social-accent: var(--fx-orange); }
.fxpip-custom-ui .fxpip-social-link--discord { --fx-social-accent: var(--fx-green-bright); }
.fxpip-custom-ui .fxpip-social-link--tiktok { --fx-social-accent: var(--fx-red); }
.fxpip-custom-ui .fxpip-social-link--email { --fx-social-accent: var(--fx-green); }

.fxpip-custom-ui .fxpip-social-link svg {
	width: 19px;
	height: 19px;
	fill: currentColor;
}

.fxpip-custom-ui .fxpip-social-link:hover,
.fxpip-custom-ui .fxpip-social-link:focus-visible {
	border-color: color-mix(in srgb, var(--fx-social-accent) 55%, transparent);
	background: color-mix(in srgb, var(--fx-social-accent) 9%, transparent);
	box-shadow: 0 10px 28px color-mix(in srgb, var(--fx-social-accent) 12%, transparent);
	color: var(--fx-social-accent);
	transform: translateY(-3px);
}

.fxpip-custom-ui .fxpip-footer h2 {
	margin-bottom: 19px;
	color: #7f9187;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui .fxpip-footer__grid > div:not(.fxpip-footer__brand) a {
	display: block;
	margin: 10px 0;
	color: #c5d0ca;
	font-size: 14px;
}

.fxpip-custom-ui .fxpip-footer__grid > div:not(.fxpip-footer__brand) a:hover,
.fxpip-custom-ui .fxpip-footer__grid > div:not(.fxpip-footer__brand) a:focus-visible { color: var(--fx-green-bright); }

.fxpip-custom-ui .fxpip-footer__bottom {
	display: flex;
	justify-content: space-between;
	gap: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--fx-line);
	color: #6f8077;
	font-size: 11px;
	letter-spacing: 0.04em;
}

.fxpip-custom-ui .fxpip-footer__bottom p { margin: 0; }

@keyframes fxpip-grid-drift {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(56px, 56px, 0); }
}

@keyframes fxpip-aurora-shift {
	0% { opacity: 0.7; transform: translate3d(-2%, -1%, 0) scale(1); }
	100% { opacity: 1; transform: translate3d(2%, 2%, 0) scale(1.06); }
}

@keyframes fxpip-glow-green {
	0% { transform: translate3d(0, -12px, 0) scale(0.94); }
	100% { transform: translate3d(-70px, 48px, 0) scale(1.12); }
}

@keyframes fxpip-glow-orange {
	0% { transform: translate3d(-25px, 20px, 0) scale(1); }
	100% { transform: translate3d(80px, -40px, 0) scale(1.14); }
}

@keyframes fxpip-card-float {
	0%, 100% { transform: translate3d(0, 0, 0); }
	50% { transform: translate3d(0, -9px, 0); }
}

@keyframes fxpip-chart-draw {
	to { stroke-dashoffset: 0; }
}

@keyframes fxpip-chart-pulse {
	0%, 100% { opacity: 0.72; transform: scale(0.85); }
	50% { opacity: 1; transform: scale(1.28); }
}

@media (min-width: 901px) {
	.fxpip-custom-ui .fxpip-hero,
	.fxpip-custom-ui .fxpip-section {
		min-height: calc(100vh - 76px);
		min-height: calc(100svh - 76px);
	}

	.fxpip-custom-ui .fxpip-hero {
		display: grid;
		align-items: start;
	}

	.fxpip-custom-ui .fxpip-section {
		display: flex;
		align-items: center;
	}

	.fxpip-custom-ui.admin-bar .fxpip-hero,
	.fxpip-custom-ui.admin-bar .fxpip-section {
		min-height: calc(100vh - 108px);
		min-height: calc(100svh - 108px);
	}
}

/* Let QHD and larger displays use their available canvas without stretching copy. */
@media (min-width: 1600px) {
	:root {
		--fx-shell: clamp(1200px, 72vw, 1600px);
	}

	.fxpip-custom-ui .fxpip-header__inner {
		gap: 34px;
	}

	.fxpip-custom-ui .fxpip-nav {
		gap: 32px;
	}

	.fxpip-custom-ui .fxpip-footer__grid {
		gap: 72px;
	}
}

@media (min-width: 901px) and (max-height: 780px) {
	.fxpip-custom-ui .fxpip-hero { padding: 10px 0 32px; }
	.fxpip-custom-ui .fxpip-hero h1 { font-size: clamp(42px, 4.4vw, 62px); }
	.fxpip-custom-ui .fxpip-hero__intro { margin-bottom: 18px; line-height: 1.5; }
	.fxpip-custom-ui .fxpip-eyebrow { margin-bottom: 12px; }
	.fxpip-custom-ui .fxpip-proof { margin-top: 18px; }
	.fxpip-custom-ui .fxpip-market-card { padding: 18px; }
	.fxpip-custom-ui .fxpip-chart { margin: 14px -8px 8px; }
	.fxpip-custom-ui .fxpip-section { padding: 52px 0; }
	.fxpip-custom-ui .fxpip-section-heading { margin-bottom: 28px; }
}

@media (max-width: 1050px) {
	.fxpip-custom-ui .fxpip-nav { gap: 20px; }
	.fxpip-custom-ui .fxpip-hero__grid { grid-template-columns: minmax(0, 1fr) minmax(370px, 0.82fr); gap: 45px; }
	.fxpip-custom-ui .fxpip-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.fxpip-custom-ui .fxpip-feature-card { min-height: 270px; }
	.fxpip-custom-ui .fxpip-feature-card__number { margin-bottom: 45px; }
}

@media (max-width: 900px) {
	.fxpip-custom-ui .fxpip-shell { width: min(calc(100% - 36px), var(--fx-shell)); }
	.fxpip-custom-ui .fxpip-header__inner { min-height: 76px; }
	.fxpip-custom-ui .fxpip-logo__art { width: 190px; }
	.fxpip-custom-ui.fxpip-js .fxpip-menu-toggle { display: inline-flex; }
	.fxpip-custom-ui:not(.fxpip-js) .fxpip-header__inner { flex-wrap: wrap; padding-block: 12px; }
	.fxpip-custom-ui:not(.fxpip-js) .fxpip-nav { flex: 1 0 100%; flex-wrap: wrap; gap: 10px 20px; }
	.fxpip-custom-ui.fxpip-js .fxpip-nav {
		position: absolute;
		top: calc(100% + 1px);
		left: 0;
		display: grid;
		width: 100%;
		gap: 0;
		padding: 18px;
		border-bottom: 1px solid var(--fx-line);
		background: rgba(5, 12, 10, 0.98);
		box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
		opacity: 0;
		pointer-events: none;
		transform: translateY(-10px);
		visibility: hidden;
		transition: opacity 180ms ease, transform 180ms ease, visibility 0s linear 180ms;
	}
	.fxpip-custom-ui.fxpip-js .fxpip-nav[data-open="true"] { opacity: 1; pointer-events: auto; transform: translateY(0); visibility: visible; transition-delay: 0s; }
	.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button) { padding: 14px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
	.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button)::before,
	.fxpip-custom-ui .fxpip-nav > a:not(.fxpip-button)::after { display: none; }
	.fxpip-custom-ui .fxpip-nav__account { margin-top: 14px; }
	.fxpip-custom-ui .fxpip-hero { padding: 10px 0 64px; }
	.fxpip-custom-ui .fxpip-hero__grid,
	.fxpip-custom-ui .fxpip-section-heading,
	.fxpip-custom-ui .fxpip-learn-grid,
	.fxpip-custom-ui .fxpip-profile-grid,
	.fxpip-custom-ui .fxpip-why-grid,
	.fxpip-custom-ui .fxpip-membership-card,
	.fxpip-custom-ui .fxpip-steps-layout,
	.fxpip-custom-ui .fxpip-cta-panel { grid-template-columns: 1fr; }
	.fxpip-custom-ui .fxpip-hero__grid { gap: 44px; }
	.fxpip-custom-ui .fxpip-market-card { max-width: 650px; }
	.fxpip-custom-ui .fxpip-section { padding: 68px 0; }
	.fxpip-custom-ui .fxpip-section-heading { align-items: start; gap: 26px; }
	.fxpip-custom-ui .fxpip-content-card { min-height: 0; }
	.fxpip-custom-ui .fxpip-why-grid { gap: 52px; }
	.fxpip-custom-ui .fxpip-steps-layout { gap: 52px; }
	.fxpip-custom-ui .fxpip-cta-panel { gap: 38px; }
	.fxpip-custom-ui .fxpip-footer__grid { grid-template-columns: 1.5fr 0.7fr 0.7fr; gap: 35px; }
}

@media (max-width: 782px) {
	.fxpip-custom-ui.admin-bar .fxpip-header { top: 46px; }
	.fxpip-custom-ui.admin-bar #membership { scroll-margin-top: 46px; }
}

@media (max-width: 700px) {
	.fxpip-home-page:not(.logged-in) .fxpip-ui {
		padding-bottom: calc(78px + env(safe-area-inset-bottom));
	}

	.fxpip-custom-ui .fxpip-join-float {
		right: 0;
		bottom: 0;
		left: 0;
		width: 100%;
		gap: 12px;
		padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
		border-right: 0;
		border-bottom: 0;
		border-left: 0;
		border-radius: 16px 16px 0 0;
		box-shadow: 0 -14px 42px rgba(0, 0, 0, 0.42);
	}

	.fxpip-custom-ui .fxpip-join-float__copy span { display: none; }
	.fxpip-custom-ui .fxpip-join-float__copy strong { font-size: 13px; }
	.fxpip-custom-ui .fxpip-join-float__button { min-height: 44px; padding-inline: 15px; }
}

@media (max-width: 640px) {
	.fxpip-custom-ui .fxpip-shell { width: min(calc(100% - 28px), var(--fx-shell)); }
	.fxpip-custom-ui .fxpip-logo__art { width: 180px; }
	.fxpip-custom-ui .fxpip-menu-toggle__label { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
	.fxpip-custom-ui .fxpip-hero { padding-top: 10px; }
	.fxpip-custom-ui .fxpip-hero h1 { font-size: clamp(43px, 13vw, 62px); }
	.fxpip-custom-ui .fxpip-hero__intro { font-size: 16px; }
	.fxpip-custom-ui .fxpip-actions { display: grid; }
	.fxpip-custom-ui .fxpip-button { width: 100%; }
	.fxpip-custom-ui .fxpip-proof { display: grid; gap: 12px; }
	.fxpip-custom-ui .fxpip-market-card { padding: 18px; border-radius: 17px; }
	.fxpip-custom-ui .fxpip-market-card__top b { display: none; }
	.fxpip-custom-ui .fxpip-process { grid-template-columns: 1fr; }
	.fxpip-custom-ui .fxpip-process > div { display: grid; grid-template-columns: 30px 1fr; align-items: center; }
	.fxpip-custom-ui .fxpip-process span { grid-row: 1 / 3; margin: 0; }
	.fxpip-custom-ui .fxpip-feature-grid { grid-template-columns: 1fr; }
	.fxpip-custom-ui .fxpip-feature-card { min-height: 245px; }
	.fxpip-custom-ui .fxpip-section-heading h2,
	.fxpip-custom-ui .fxpip-profile-panel h2,
	.fxpip-custom-ui .fxpip-why-copy h2,
	.fxpip-custom-ui .fxpip-live-card h2,
	.fxpip-custom-ui .fxpip-steps-copy h2,
	.fxpip-custom-ui .fxpip-cta-panel h2 { font-size: 38px; }
	.fxpip-custom-ui .fxpip-content-card,
	.fxpip-custom-ui .fxpip-profile-panel,
	.fxpip-custom-ui .fxpip-live-card,
	.fxpip-custom-ui .fxpip-membership-card { padding: 28px 22px; }
	.fxpip-custom-ui .fxpip-membership-card__list li { padding-left: 48px; font-size: 16px; }
	.fxpip-custom-ui .fxpip-content-card__label { margin-bottom: 42px; }
	.fxpip-custom-ui .fxpip-live-schedule { grid-template-columns: 1fr; }
	.fxpip-custom-ui .fxpip-steps li { grid-template-columns: 42px 1fr; gap: 12px; }
	.fxpip-custom-ui .fxpip-steps h3 { font-size: 21px; }
	.fxpip-custom-ui .fxpip-cta-panel { padding: 30px 22px; }
	.fxpip-custom-ui .fxpip-cta-panel__actions { width: 100%; }
	.fxpip-custom-ui .fxpip-footer__grid { grid-template-columns: 1fr 1fr; gap: 42px 24px; }
	.fxpip-custom-ui .fxpip-footer__brand { grid-column: 1 / -1; }
	.fxpip-custom-ui .fxpip-footer__bottom { display: grid; }
	.fxpip-custom-ui .fxpip-ui::before,
	.fxpip-custom-ui .fxpip-hero__glow,
	.fxpip-custom-ui .fxpip-market-card,
	.fxpip-custom-ui .fxpip-chart circle {
		animation: none;
		will-change: auto;
	}
	.fxpip-custom-ui .fxpip-ui::after { animation-duration: 28s; }
}

@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto !important; }
	.fxpip-custom-ui *,
	.fxpip-custom-ui *::before,
	.fxpip-custom-ui *::after {
		animation: none !important;
		scroll-behavior: auto !important;
		transition: none !important;
		will-change: auto !important;
	}
	.fxpip-custom-ui .fxpip-chart__line { stroke-dashoffset: 0 !important; }
	.fxpip-custom-ui .fxpip-chart circle { opacity: 1 !important; transform: none !important; }
}

/* Welcome page ----------------------------------------------------------- */

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access {
	position: relative;
	z-index: 1;
	display: grid;
	min-height: calc(100svh - 76px);
	align-items: start;
	overflow: hidden;
	background:
		radial-gradient(circle at 12% 20%, rgba(255, 112, 8, 0.11), transparent 30rem),
		radial-gradient(circle at 88% 76%, rgba(54, 212, 129, 0.13), transparent 32rem),
		var(--fx-bg);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access::before {
	position: absolute;
	inset: 0;
	content: "";
	pointer-events: none;
	background-image:
		linear-gradient(rgba(102, 147, 125, 0.075) 1px, transparent 1px),
		linear-gradient(90deg, rgba(102, 147, 125, 0.075) 1px, transparent 1px);
	background-size: 56px 56px;
	mask-image: linear-gradient(90deg, transparent 5%, #000 54%, transparent 96%);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__section {
	position: relative;
	z-index: 1;
	padding: clamp(10px, 1.5vw, 18px) 0 clamp(48px, 5.5vw, 72px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
	align-items: center;
	gap: clamp(38px, 5vw, 72px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__copy h1 {
	max-width: 820px;
	margin: 16px 0 0;
	color: var(--fx-orange);
	font-size: clamp(3.35rem, 6vw, 5.95rem);
	font-weight: 820;
	letter-spacing: -0.07em;
	line-height: 0.94;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__copy h1 em {
	display: block;
	color: var(--fx-green);
	font-style: normal;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__copy > p:not(.fxpip-eyebrow) {
	max-width: 690px;
	margin: 28px 0 0;
	color: var(--fx-muted);
	font-size: clamp(1rem, 1.5vw, 1.15rem);
	line-height: 1.75;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__copy .fxpip-actions {
	margin-top: 32px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__copy > .fxpip-text-link {
	margin-top: 24px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card {
	position: relative;
	padding: clamp(30px, 4vw, 46px);
	overflow: hidden;
	border: 1px solid rgba(255, 112, 8, 0.3);
	border-radius: 26px;
	background:
		radial-gradient(circle at 100% 100%, rgba(54, 212, 129, 0.11), transparent 42%),
		linear-gradient(145deg, rgba(19, 29, 21, 0.98), rgba(6, 15, 11, 0.98));
	box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card::after {
	position: absolute;
	right: -98px;
	bottom: -105px;
	width: 260px;
	height: 260px;
	border: 42px solid rgba(54, 212, 129, 0.045);
	border-radius: 50%;
	content: "";
	pointer-events: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__mark {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: auto minmax(48px, 1fr) auto;
	align-items: center;
	gap: 14px;
	max-width: 230px;
	margin-bottom: 34px;
	color: var(--fx-orange);
	font-size: 0.72rem;
	font-weight: 850;
	letter-spacing: 0.12em;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__mark b {
	color: var(--fx-green-bright);
	font: inherit;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__mark i {
	height: 2px;
	background: linear-gradient(90deg, var(--fx-orange), var(--fx-green-bright));
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__mark i::after {
	display: block;
	width: 8px;
	height: 8px;
	margin: -3px auto 0;
	border-radius: 50%;
	background: var(--fx-green-bright);
	box-shadow: 0 0 18px rgba(54, 212, 129, 0.7);
	content: "";
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card > p {
	position: relative;
	z-index: 1;
	margin-bottom: 12px;
	color: var(--fx-orange);
	font-size: 0.69rem;
	font-weight: 820;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card h2 {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(2rem, 3.5vw, 3rem);
	letter-spacing: -0.055em;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card ol {
	position: relative;
	z-index: 1;
	display: grid;
	gap: 0;
	margin: 32px 0 24px;
	padding: 0;
	list-style: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card li {
	display: grid;
	grid-template-columns: 34px minmax(0, 1fr);
	align-items: center;
	gap: 13px;
	padding: 14px 0;
	border-top: 1px solid var(--fx-line);
	color: #d4dfd9;
	font-size: 0.92rem;
	line-height: 1.45;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card li span {
	color: var(--fx-green-bright);
	font-size: 0.66rem;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card li strong {
	font: inherit;
	font-weight: 650;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card small {
	position: relative;
	z-index: 1;
	display: block;
	color: #7f9187;
	font-size: 0.71rem;
	line-height: 1.6;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-main {
	position: relative;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero {
	position: relative;
	display: grid;
	min-height: auto;
	padding: clamp(10px, 1.5vw, 18px) 0 56px;
	place-items: start center;
	overflow: hidden;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero::before,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero::after {
	position: absolute;
	content: "";
	pointer-events: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero::before {
	top: 5%;
	right: -14%;
	width: 620px;
	height: 620px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(54, 212, 129, 0.12), transparent 67%);
	filter: blur(16px);
	animation: fxpip-glow-green 14s ease-in-out infinite alternate;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero::after {
	bottom: -230px;
	left: -190px;
	width: 500px;
	height: 500px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 112, 8, 0.1), transparent 69%);
	filter: blur(20px);
	animation: fxpip-glow-orange 17s ease-in-out infinite alternate;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(400px, 0.82fr);
	align-items: center;
	gap: clamp(38px, 5vw, 72px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero h1 {
    max-width: 680px;
    margin-bottom: 22px;
    color: var(--fx-orange);
    font-size: clamp(50px, 5.8vw, 80px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero__lead {
	max-width: 650px;
	margin-bottom: 30px;
	color: var(--fx-muted);
	font-size: clamp(17px, 1.5vw, 20px);
	line-height: 1.7;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card {
	position: relative;
	padding: clamp(28px, 3.8vw, 42px);
	border: 1px solid rgba(54, 212, 129, 0.24);
	border-radius: 24px;
	background:
		radial-gradient(circle at 100% 0, rgba(54, 212, 129, 0.11), transparent 35%),
		linear-gradient(145deg, rgba(15, 34, 26, 0.98), rgba(6, 16, 12, 0.98));
	box-shadow: var(--fx-shadow);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card::before {
	position: absolute;
	inset: -1px;
	z-index: -1;
	border-radius: inherit;
	background: linear-gradient(140deg, rgba(54, 212, 129, 0.3), transparent 42%, rgba(255, 112, 8, 0.13));
	content: "";
	filter: blur(14px);
	opacity: 0.5;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card__label {
	margin-bottom: 12px;
	color: var(--fx-green-bright);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.16em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card h2 {
	margin-bottom: 26px;
	font-size: clamp(30px, 3vw, 42px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card ol {
	margin: 0;
	padding: 0;
	border-top: 1px solid var(--fx-line);
	list-style: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li {
	border-bottom: 1px solid var(--fx-line);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li a {
	display: grid;
	grid-template-columns: 42px minmax(0, 1fr);
	gap: 2px 16px;
	padding: 18px 4px;
	transition: padding 180ms ease, background-color 180ms ease;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li a:hover,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li a:focus-visible {
	padding-inline: 10px;
	background: rgba(54, 212, 129, 0.045);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li span {
	grid-row: 1 / 3;
	color: var(--fx-orange);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.1em;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li strong,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li small {
	display: block;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li strong {
	font-size: 15px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card li small {
	color: var(--fx-muted);
	font-size: 12px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section {
	position: relative;
	padding: 64px 0;
	border-top: 1px solid var(--fx-line);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section--surface {
	background: rgba(8, 20, 15, 0.74);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-intro {
	display: grid;
	grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
	align-items: start;
	gap: clamp(34px, 5vw, 72px);
	margin-bottom: 36px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading h2,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-intro h2,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live h2 {
	margin-bottom: 0;
	font-size: clamp(38px, 4.3vw, 58px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading > div:last-child p,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-copy p,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live__copy > p {
	color: var(--fx-muted);
	font-size: 16px;
	line-height: 1.8;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading > div:last-child p:last-child,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-copy p:last-child,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live__copy > p:last-child {
	margin-bottom: 0;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border: 1px solid rgba(54, 212, 129, 0.24);
	border-radius: 24px;
	background: #000;
	box-shadow: var(--fx-shadow);
	overflow: hidden;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-frame::after {
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, 0.04);
	border-radius: inherit;
	content: "";
	pointer-events: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-frame iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 28px;
	margin-top: 22px;
	padding: 20px 22px;
	border: 1px solid var(--fx-line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.025);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord span,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord strong {
	display: block;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord span {
	margin-bottom: 3px;
	color: var(--fx-green-bright);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord strong {
	font-size: 18px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-copy {
	padding-left: 28px;
	border-left: 2px solid rgba(255, 112, 8, 0.58);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin: 0 0 36px;
	padding: 0;
	list-style: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations li {
	padding: 18px;
	border: 1px solid var(--fx-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.025);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations span,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations strong {
	display: block;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations span {
	margin-bottom: 8px;
	color: var(--fx-orange);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations strong {
	font-size: 14px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 16px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item {
	position: relative;
	display: grid;
	grid-template-columns: 54px minmax(0, 1fr);
	gap: 22px;
	min-height: 270px;
	padding: clamp(26px, 3vw, 38px);
	border: 1px solid var(--fx-line);
	border-top-color: rgba(54, 212, 129, 0.56);
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(12, 28, 22, 0.96), rgba(6, 15, 12, 0.98));
	overflow: hidden;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item--accent {
	border-top-color: rgba(255, 112, 8, 0.65);
	background: linear-gradient(145deg, rgba(22, 28, 18, 0.96), rgba(7, 16, 12, 0.98));
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item--wide {
	grid-column: 1 / -1;
	min-height: 0;
	border-top-color: rgba(54, 212, 129, 0.56);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item--wide .fxpip-roadmap-item__content {
	max-width: 920px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item::after {
	position: absolute;
	right: -110px;
	bottom: -130px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: var(--fx-green);
	content: "";
	filter: blur(90px);
	opacity: 0.07;
	pointer-events: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item--accent::after {
	background: var(--fx-orange);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item__number {
	display: grid;
	width: 48px;
	height: 48px;
	place-items: center;
	border: 1px solid rgba(54, 212, 129, 0.3);
	border-radius: 50%;
	color: var(--fx-green-bright);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.08em;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item--accent .fxpip-roadmap-item__number {
	border-color: rgba(255, 112, 8, 0.38);
	color: var(--fx-orange);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item__content {
	position: relative;
	z-index: 1;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item__label {
	margin-bottom: 12px;
	color: var(--fx-green-bright);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item--accent .fxpip-roadmap-item__label {
	color: var(--fx-orange);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item h3 {
	margin-bottom: 15px;
	font-size: clamp(24px, 2.3vw, 32px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item__content > p:not(.fxpip-roadmap-item__label) {
	color: var(--fx-muted);
	font-size: 14px;
	line-height: 1.75;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item .fxpip-text-link {
	margin-top: 4px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live {
	background:
		radial-gradient(circle at 12% 80%, rgba(54, 212, 129, 0.08), transparent 29%),
		radial-gradient(circle at 88% 16%, rgba(255, 112, 8, 0.08), transparent 25%);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live__grid {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(430px, 0.78fr);
	align-items: start;
	gap: clamp(38px, 5vw, 72px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live h2 {
	margin-bottom: 28px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule {
	padding: clamp(28px, 4vw, 42px);
	border: 1px solid rgba(255, 112, 8, 0.28);
	border-radius: 22px;
	background: linear-gradient(145deg, rgba(18, 29, 21, 0.98), rgba(6, 16, 12, 0.98));
	box-shadow: var(--fx-shadow);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 20px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__top > span {
	color: var(--fx-orange);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__top b {
	padding: 6px 9px;
	border: 1px solid rgba(54, 212, 129, 0.24);
	border-radius: 999px;
	color: var(--fx-green-bright);
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 18px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days > div {
	padding: 20px;
	border: 1px solid var(--fx-line);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.026);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days span,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days strong,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days small {
	display: block;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days span {
	margin-bottom: 16px;
	color: var(--fx-green-bright);
	font-size: 10px;
	font-weight: 820;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days strong {
	margin-bottom: 4px;
	font-size: 26px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days small,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule > p {
	color: var(--fx-muted);
	font-size: 11px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule > p {
	margin-bottom: 20px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-video-week {
	background:
		linear-gradient(rgba(54, 212, 129, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(54, 212, 129, 0.025) 1px, transparent 1px),
		radial-gradient(circle at 8% 12%, rgba(54, 212, 129, 0.09), transparent 30%),
		#06100c;
	background-size: 72px 72px, 72px 72px, auto, auto;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	margin-bottom: 20px;
	padding: 22px 24px;
	border: 1px solid rgba(54, 212, 129, 0.32);
	border-radius: 20px;
	background: linear-gradient(115deg, rgba(15, 38, 27, 0.98), rgba(7, 18, 13, 0.98));
	box-shadow: var(--fx-shadow);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon {
	position: relative;
	width: 54px;
	height: 54px;
	border: 1px solid rgba(54, 212, 129, 0.3);
	border-radius: 15px;
	background: rgba(54, 212, 129, 0.07);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon span,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon i,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon b {
	position: absolute;
	bottom: 13px;
	width: 7px;
	border-radius: 2px;
	background: var(--fx-green-bright);
	content: "";
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon span {
	left: 13px;
	height: 17px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon i {
	left: 24px;
	height: 28px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout__icon b {
	left: 35px;
	height: 22px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout span,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout strong {
	display: block;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout > div:nth-child(2) > span {
	margin-bottom: 5px;
	color: var(--fx-green-bright);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout strong {
	font-size: clamp(16px, 1.5vw, 20px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slots {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot {
	position: relative;
	min-height: 280px;
	padding: 26px;
	border: 1px solid var(--fx-line);
	border-top-color: rgba(54, 212, 129, 0.48);
	border-radius: 18px;
	background: linear-gradient(145deg, rgba(12, 29, 21, 0.97), rgba(6, 15, 12, 0.98));
	overflow: hidden;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot::after {
	position: absolute;
	right: -70px;
	bottom: -90px;
	width: 190px;
	height: 190px;
	border-radius: 50%;
	background: var(--fx-green);
	content: "";
	filter: blur(70px);
	opacity: 0.07;
	pointer-events: none;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--featured {
	grid-column: span 2;
	border-top-color: var(--fx-green-bright);
	background:
		radial-gradient(circle at 100% 0, rgba(54, 212, 129, 0.13), transparent 40%),
		linear-gradient(145deg, rgba(14, 36, 25, 0.98), rgba(6, 15, 12, 0.98));
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--public,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--recap {
	border-top-color: rgba(255, 112, 8, 0.68);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--public::after,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--recap::after {
	background: var(--fx-orange);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot__time {
	display: flex;
	align-items: baseline;
	gap: 7px;
	margin-bottom: 24px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot__time strong {
	font-size: clamp(38px, 4vw, 54px);
	font-weight: 860;
	letter-spacing: -0.055em;
	line-height: 0.92;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot__time span {
	color: var(--fx-orange);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot__meta {
	margin-bottom: 9px;
	color: var(--fx-green-bright);
	font-size: 9px;
	font-weight: 850;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--public .fxpip-video-schedule-slot__meta,
.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--recap .fxpip-video-schedule-slot__meta {
	color: var(--fx-orange);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot h3 {
	margin-bottom: 12px;
	font-size: clamp(22px, 2.1vw, 29px);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot > p:last-child {
	position: relative;
	z-index: 1;
	margin-bottom: 0;
	color: var(--fx-muted);
	font-size: 13px;
	line-height: 1.7;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin-top: 14px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend article {
	padding: 24px 26px;
	border: 1px solid var(--fx-line);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.025);
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend article > span {
	display: block;
	margin-bottom: 10px;
	color: var(--fx-orange);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: 0.13em;
	text-transform: uppercase;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend h3 {
	margin-bottom: 9px;
	font-size: 21px;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend p {
	margin-bottom: 0;
	color: var(--fx-muted);
	font-size: 13px;
	line-height: 1.65;
}

.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend__rest {
	opacity: 0.72;
}

@media (max-width: 1050px) {
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero__grid {
		grid-template-columns: minmax(0, 1fr) minmax(350px, 0.78fr);
		gap: 42px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 16px;
		padding: 28px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item__number {
		width: 42px;
		height: 42px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slots {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access {
		min-height: 0;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card {
		max-width: 680px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero {
		min-height: 0;
		padding: 14px 0 68px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero__grid,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-intro,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live__grid {
		grid-template-columns: 1fr;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-start-card {
		max-width: 650px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section {
		padding: 72px 0;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-intro {
		gap: 28px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-copy {
		padding: 0;
		border-left: 0;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-list {
		grid-template-columns: 1fr;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item {
		min-height: 0;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live__grid {
		gap: 48px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule {
		max-width: 680px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout .fxpip-button {
		grid-column: 1 / -1;
		width: 100%;
	}
}

@media (max-width: 700px) {
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord {
		align-items: stretch;
		flex-direction: column;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-discord .fxpip-button {
		width: 100%;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot--featured {
		grid-column: auto;
	}
}

@media (max-width: 640px) {
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__section {
		padding: 10px 0 52px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__copy h1 {
		font-size: clamp(2.7rem, 13vw, 4.2rem);
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-access__card {
		padding: 28px 22px;
		border-radius: 20px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero {
		padding-top: 10px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero h1 {
		font-size: clamp(44px, 13vw, 62px);
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section {
		padding: 60px 0;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-section-heading h2,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-roadmap-intro h2,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-live h2 {
		font-size: 38px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-frame {
		border-radius: 16px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations {
		gap: 8px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-expectations li {
		padding: 15px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item {
		grid-template-columns: 1fr;
		gap: 18px;
		padding: 26px 22px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-roadmap-item h3 {
		font-size: 26px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule {
		padding: 26px 22px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-schedule__days {
		grid-template-columns: 1fr;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-callout {
		grid-template-columns: 1fr;
		padding: 22px;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slots,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-weekend {
		grid-template-columns: 1fr;
	}

	.fxpip-custom-ui.fxpip-welcome-page .fxpip-video-schedule-slot {
		min-height: 0;
		padding: 24px 22px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero::before,
	.fxpip-custom-ui.fxpip-welcome-page .fxpip-welcome-hero::after {
		animation: none !important;
	}
}
