/*
 * Live Funded LP — page styles
 * Scoped to body.live-funded.
 * Loaded only on page-live-funded.php.
 * Mobile-first: base = mobile, overrides via @media (min-width).
 */

/* Variables */
:root {
	/* Brand palette */
	--lf-orange: #f3981f;
	--lf-orange-light: #ffaf45;
	--lf-cta-gradient: linear-gradient(105.97deg, #f3981f 0%, #e57625 100%);
	--lf-cta-gradient-hover: linear-gradient(105.97deg, #ffab3c 0%, #ee8436 100%);

	/* Surfaces */
	--lf-black: #131211;
	--lf-bg: #131211;

	/* Text */
	--lf-white: #ffffff;
	--lf-cream: #f5f0e6;

	/* Shadows */
	--lf-cta-shadow: 0 2px 21.2px rgba(243, 152, 31, 0.39);

	/* Typography — Figtree */
	--lf-font: "Figtree", sans-serif;
	--lf-fs-s: 14px;
	--lf-fs-m: 16px;
	--lf-fw-regular: 400;
	--lf-fw-medium: 500;
	--lf-fw-semibold: 600;
	--lf-fw-bold: 700;

	/* Layout */
	--lf-wrapper-max: 1200px;
}

/* Base */
body.live-funded {
	margin: 0;
	background: var(--lf-bg);
	font-family: var(--lf-font);
	font-size: var(--lf-fs-m);
	font-weight: var(--lf-fw-regular);
	line-height: 1.4;
	color: var(--lf-white);
}

body.live-funded *,
body.live-funded *::before,
body.live-funded *::after {
	box-sizing: border-box;
}

body.live-funded ::selection {
	background: var(--lf-orange);
	color: var(--lf-black);
}

body.live-funded img {
	max-width: 100%;
	height: auto;
}

body.live-funded a {
	color: var(--lf-orange);
	text-decoration: none;
}

body.live-funded a:hover {
	color: var(--lf-orange-light);
}

body.live-funded .wrapper {
	max-width: calc(var(--lf-wrapper-max) + 28px);
	padding-inline: 14px;
	margin-inline: auto;
}

@media (min-width: 768px) {
	body.live-funded .wrapper {
		max-width: calc(var(--lf-wrapper-max) + 24px);
		padding-inline: 12px;
	}
}

@media (min-width: 992px) {
	body.live-funded {
		background-image: url("../img/hero-glow.svg");
		background-repeat: no-repeat;
		background-position: center -359px;
		background-size: 2356px 1345px;
	}
}

/* Hero background container */
body.live-funded .lf-hero-bg {
	position: relative;
}

/* Section anchor offset under sticky header */
body.live-funded .lf-section[id] {
	scroll-margin-top: 70px;
}

/* Buttons (reusable) */
body.live-funded .lf-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 56px;
	padding-block: 8px;
	border: 0;
	font-size: 18px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	transition:
		background 0.25s ease,
		border-color 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

body.live-funded .lf-btn--primary {
	padding-inline: 40px 34px;
	border-radius: 12px;
	background-image: linear-gradient(101.6deg, #f3981f 0%, #e57625 100%);
	color: var(--lf-black);
	font-weight: var(--lf-fw-bold);
	box-shadow: 0 20px 40px -10px rgba(255, 107, 71, 0.4);
}

body.live-funded .lf-btn--primary:hover,
body.live-funded .lf-btn--primary:focus-visible {
	color: var(--lf-black);
	background-image: linear-gradient(101.6deg, #ffab3c 0%, #ee8436 100%);
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.5);
	transform: translateY(-1px);
}

body.live-funded .lf-btn--secondary {
	padding-inline: 30px;
	border: 1px solid #393532;
	border-radius: 10px;
	background: #282320;
	color: var(--lf-cream);
	font-size: 16px;
}

body.live-funded .lf-btn--secondary:hover,
body.live-funded .lf-btn--secondary:focus-visible {
	background:
		linear-gradient(
			92.95deg,
			rgba(255, 171, 60, 0.16) 0%,
			rgba(238, 132, 54, 0.16) 100%
		),
		#282320;
	border-color: rgba(243, 152, 31, 0.45);
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.18);
	transform: translateY(-1px);
	color: var(--lf-cream);
}

/* Badge (reusable) */
body.live-funded .lf-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 12px 14px;
	border: 1px solid #63350d;
	border-radius: 26px;
	background: #201812;
	color: #ff9242;
	font-size: 10px;
	font-weight: var(--lf-fw-medium);
	line-height: 1;
	letter-spacing: 2.16px;
	text-transform: uppercase;
}

body.live-funded .lf-badge--green {
	padding: 8px 14px 8px 12px;
	border-color: rgba(95, 214, 147, 0.25);
	border-radius: 122px;
	background: rgba(95, 214, 147, 0.12);
	color: #5fd693;
	font-size: 9px;
	letter-spacing: normal;
	text-transform: none;
}

body.live-funded .lf-badge__dot {
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #5fd693;
	flex-shrink: 0;
	animation: lf-pulse-green 2s ease-in-out infinite;
}

@keyframes lf-pulse-green {
	0%,
	100% {
		opacity: 1;
		box-shadow: 0 0 0 0 rgba(95, 214, 147, 0.45);
	}
	50% {
		opacity: 0.7;
		box-shadow: 0 0 0 6px rgba(95, 214, 147, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.live-funded .lf-badge__dot {
		animation: none;
	}
}

@media (min-width: 992px) {
	body.live-funded .lf-badge {
		font-size: 12px;
	}
}

/* Header */
body.live-funded .lf-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(20, 19, 19, 0.85);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(245, 240, 230, 0.08);
}

body.live-funded .lf-header__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding-block: 10px;
}

body.live-funded .lf-header__logo {
	flex-shrink: 0;
	display: inline-flex;
}

body.live-funded .lf-header__logo img {
	display: block;
	width: 64px;
	height: auto;
}

/* Header — primary nav (desktop only) */
body.live-funded .lf-header__nav {
	display: none;
}

body.live-funded .lf-header__menu {
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.live-funded .lf-header__menu-link {
	color: #a8a8a8;
	font-size: var(--lf-fs-s);
	font-weight: var(--lf-fw-regular);
	line-height: 1;
	transition: color 0.2s ease;
}

body.live-funded .lf-header__menu-link.is-alt {
	font-weight: var(--lf-fw-medium);
}

body.live-funded .lf-header__menu-link:hover {
	color: var(--lf-white);
}

body.live-funded .lf-header__menu-link.is-active {
	color: var(--lf-orange-light);
	font-weight: var(--lf-fw-medium);
}

/* Header — actions */
body.live-funded .lf-header__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

body.live-funded .lf-header__login {
	display: none;
	font-size: var(--lf-fs-s);
	font-weight: var(--lf-fw-bold);
	background-image: var(--lf-cta-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

/* Header CTA — standalone small button, centered on mobile */
body.live-funded .lf-header__cta {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	border: 0;
	border-radius: 8px;
	background-image: var(--lf-cta-gradient);
	color: var(--lf-black);
	font-size: var(--lf-fs-s);
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
	box-shadow: var(--lf-cta-shadow);
	transition:
		background 0.25s ease,
		box-shadow 0.25s ease,
		transform 0.25s ease;
}

body.live-funded .lf-header__cta:hover,
body.live-funded .lf-header__cta:focus-visible {
	color: var(--lf-black);
	background-image: var(--lf-cta-gradient-hover);
	box-shadow: 0 2px 24px 0 rgba(243, 152, 31, 0.5);
	transform: translate(-50%, -50%);
}

/* Burger toggle */
body.live-funded .lf-header__toggle {
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	padding: 3px;
	background: transparent;
	border: 0;
	cursor: pointer;
}

body.live-funded .lf-header__toggle span {
	display: block;
	width: 22px;
	height: 2px;
	border-radius: 2px;
	background: var(--lf-orange);
	transition:
		transform 0.25s ease,
		opacity 0.25s ease;
}

body.live-funded .lf-header__toggle.is-open span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

body.live-funded .lf-header__toggle.is-open span:nth-child(2) {
	opacity: 0;
}

body.live-funded .lf-header__toggle.is-open span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 992px) {
	body.live-funded .lf-header__inner {
		display: grid;
		grid-template-columns: 1fr auto 1fr;
	}

	body.live-funded .lf-header__logo img {
		width: 73px;
	}

	body.live-funded .lf-header__nav {
		display: block;
		justify-self: center;
	}

	body.live-funded .lf-header__actions {
		gap: 20px;
		justify-self: end;
	}

	body.live-funded .lf-header__login {
		display: inline-flex;
	}

	body.live-funded .lf-header__cta,
	body.live-funded .lf-header__cta:hover,
	body.live-funded .lf-header__cta:focus-visible {
		position: static;
		transform: none;
	}

	body.live-funded .lf-header__cta:hover,
	body.live-funded .lf-header__cta:focus-visible {
		transform: translateY(-1px);
	}

	body.live-funded .lf-header__toggle {
		display: none;
	}
}

/* Mobile menu */
body.live-funded .lf-mobile-menu {
	position: fixed;
	top: var(--lf-mobile-menu-top, 58px);
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
	background: #161514;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	overflow-y: auto;
	transition:
		opacity 0.24s ease,
		visibility 0.24s ease;
}

body.live-funded .lf-mobile-menu.is-active {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.live-funded .lf-mobile-menu__inner {
	min-height: calc(100dvh - var(--lf-mobile-menu-top, 58px));
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 40px;
	transform: translateY(-56px);
	transition: transform 0.28s ease;
}

body.live-funded .lf-mobile-menu.is-active .lf-mobile-menu__inner {
	transform: translateY(0);
}

body.live-funded .lf-mobile-menu__nav {
	display: flex;
	justify-content: center;
	width: 100%;
}

body.live-funded .lf-mobile-menu__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 28px;
	width: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.live-funded .lf-mobile-menu__link {
	display: inline-block;
	color: #a8a8a8;
	font-size: 28px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1.1;
	letter-spacing: -0.02em;
	transition: color 0.2s ease;
}

body.live-funded .lf-mobile-menu__link:hover {
	color: var(--lf-white);
}

body.live-funded.lf-menu-open {
	overflow: hidden;
}

@media (min-width: 992px) {
	body.live-funded .lf-mobile-menu {
		display: none;
	}
}

/* ===== Hero ===== */
body.live-funded .lf-hero {
	padding-block: 40px 30px;
}

body.live-funded .lf-hero__top {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

body.live-funded .lf-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

body.live-funded .lf-hero__title {
	margin: 20px 0 0;
	font-weight: var(--lf-fw-medium);
	font-size: clamp(40px, 17.4vw, 68px);
	line-height: 1;
	color: var(--lf-cream);
}

body.live-funded .lf-hero__title span {
	display: block;
}

body.live-funded .lf-hero__title-accent {
	color: var(--lf-orange);
}

body.live-funded .lf-hero__sub {
	margin: 10px 0 0;
	max-width: 577px;
	color: #a8a8a8;
	font-size: 18px;
	line-height: 1.3;
}

body.live-funded .lf-hero__features {
	display: flex;
	flex-direction: column;
	gap: 3px;
	margin: 10px 0 0;
	padding: 0;
	list-style: none;
}

body.live-funded .lf-hero__feature {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	color: var(--lf-cream);
	font-size: 16px;
	line-height: 1.3;
}

body.live-funded .lf-hero__check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 24px;
	height: 24px;
	border: 1px solid rgba(55, 210, 122, 0.3);
	border-radius: 8px;
	background: rgba(55, 210, 122, 0.12);
	color: #37d27a;
}

body.live-funded .lf-hero__feature-text strong {
	font-weight: var(--lf-fw-semibold);
}

body.live-funded .lf-hero__actions {
	display: flex;
	flex-direction: column;
	gap: 17px;
	margin: 17px 0 0;
	width: 100%;
}

body.live-funded .lf-hero__actions .lf-btn {
	width: 100%;
}

/* Hero — founder video */
body.live-funded .lf-hero__media {
	width: 100%;
}

body.live-funded .lf-hero__video {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 9;
	border: 1px solid #784c0f;
	border-radius: 10px;
	background: #141313;
	box-shadow: 0 4px 30px 0 rgba(243, 152, 31, 0.3);
	overflow: hidden;
}

body.live-funded .lf-hero__iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

body.live-funded .lf-hero__trust {
	margin-top: 40px;
}

@media (min-width: 992px) {
	body.live-funded .lf-hero {
		padding-block: 50px 50px;
	}

	body.live-funded .lf-hero__top {
		flex-direction: row;
		align-items: center;
		gap: 27px;
	}

	body.live-funded .lf-hero__content {
		width: 612px;
		flex-shrink: 0;
	}

	body.live-funded .lf-hero .lf-badge--green {
		font-size: 12px;
	}

	body.live-funded .lf-hero .lf-badge__dot {
		width: 7px;
		height: 7px;
	}

	body.live-funded .lf-hero__title {
		font-size: 67px;
		line-height: 1.1;
	}

	body.live-funded .lf-hero__sub {
		font-size: 20px;
		line-height: 1.3;
	}

	body.live-funded .lf-hero__feature {
		align-items: center;
		font-size: 20px;
		line-height: 1.5;
	}

	body.live-funded .lf-hero__check {
		width: 26px;
		height: 26px;
	}

	body.live-funded .lf-hero__actions {
		flex-direction: row;
		gap: 10px;
		width: auto;
	}

	body.live-funded .lf-hero__actions .lf-btn {
		width: auto;
	}

	body.live-funded .lf-hero__actions .lf-btn--secondary {
		font-size: 18px;
	}

	body.live-funded .lf-hero__media {
		flex: 1 1 auto;
		min-width: 0;
	}

	body.live-funded .lf-hero__trust {
		margin-top: 60px;
	}
}

/* ===== Section head (reusable: badge + title + sub, centered) ===== */
body.live-funded .lf-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}

body.live-funded .lf-head__title {
	margin: 0;
	max-width: 360px;
	font-weight: var(--lf-fw-medium);
	font-size: 48px;
	line-height: 1;
	color: var(--lf-cream);
}

body.live-funded .lf-head__title-accent {
	color: var(--lf-orange);
}

body.live-funded .lf-head__sub {
	margin: 0;
	max-width: 343px;
	color: #a8a8a8;
	font-size: 14px;
	line-height: 1.2;
}

@media (min-width: 992px) {
	body.live-funded .lf-head__title {
		max-width: 522px;
		font-size: 58px;
	}

	body.live-funded .lf-head__sub {
		max-width: none;
		font-size: 18px;
	}
}

/* ===== Funded in three steps ===== */
body.live-funded .lf-steps {
	padding-block: 30px;
}

body.live-funded .lf-steps .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-steps__grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
	width: 100%;
}

body.live-funded .lf-steps__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	padding: 28px 20px;
	border: 1px solid #272727;
	border-radius: 23px;
	background: linear-gradient(180deg, #141313 0%, #141212 100%);
	overflow: hidden;
	transition:
		transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
		border-color 0.3s ease,
		box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

body.live-funded .lf-steps__card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		var(--lf-orange),
		transparent
	);
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	z-index: 2;
}

@media (min-width: 992px) {
	body.live-funded .lf-steps__card:hover {
		border-color: rgba(245, 240, 230, 0.16);
	}

	body.live-funded .lf-steps__card:hover::before {
		opacity: 1;
	}
}

body.live-funded .lf-steps__row {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	color: #ff9242;
	white-space: nowrap;
}

body.live-funded .lf-steps__num {
	font-size: 38px;
	line-height: 1;
}

body.live-funded .lf-steps__step {
	font-size: 18px;
	line-height: 1;
}

body.live-funded .lf-steps__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
	text-align: center;
}

body.live-funded .lf-steps__title {
	margin: 0;
	font-weight: var(--lf-fw-regular);
	font-size: 18px;
	line-height: 1;
	color: var(--lf-cream);
}

body.live-funded .lf-steps__text {
	margin: 0;
	font-size: 14px;
	line-height: 1.2;
	color: #a8a8a8;
}

@media (min-width: 992px) {
	body.live-funded .lf-steps {
		padding-block: 50px;
	}

	body.live-funded .lf-steps .wrapper {
		gap: 52px;
	}

	body.live-funded .lf-steps__grid {
		flex-direction: row;
		gap: 22px;
	}

	body.live-funded .lf-steps__card {
		flex: 1;
		align-items: flex-start;
		padding: 29px 28px;
	}

	body.live-funded .lf-steps__row {
		justify-content: flex-start;
	}

	body.live-funded .lf-steps__num {
		font-size: 40px;
	}

	body.live-funded .lf-steps__step {
		font-size: 20px;
	}

	body.live-funded .lf-steps__body {
		text-align: left;
	}

	body.live-funded .lf-steps__title {
		font-size: 20px;
	}

	body.live-funded .lf-steps__text {
		font-size: 16px;
	}
}

/* ===== Every payout, on the blockchain ===== */
body.live-funded .lf-payouts {
	--lf-wrapper-max: 780px;
	position: relative;
	padding-block: 30px;
}

body.live-funded .lf-payouts .wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-head__sub--wide {
	max-width: 343px;
}

@media (min-width: 992px) {
	body.live-funded .lf-payouts {
		padding-block: 50px;
	}

	/* Masked layer — fades at edge */
	body.live-funded .lf-payouts::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 0;
		background-image: url("../img/payouts-glow.svg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 2118px 1112px;
		-webkit-mask: linear-gradient(to bottom, #000 55%, transparent 100%);
		mask: linear-gradient(to bottom, #000 55%, transparent 100%);
		pointer-events: none;
	}

	body.live-funded .lf-head__sub--wide {
		max-width: 644px;
	}
}

/* ===== What could you withdraw? (calculator) ===== */
body.live-funded .lf-calc {
	--lf-wrapper-max: 1136px;
	padding-block: 30px;
}

body.live-funded .lf-calc .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-calc__card {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
	padding: 20px 13px;
	border: 1px solid rgba(255, 170, 60, 0.1);
	border-radius: 18px;
	background: linear-gradient(180deg, #1c150d 0%, #141313 100%);
}

body.live-funded .lf-calc__controls {
	display: flex;
	flex-direction: column;
	gap: 24px;
	width: 100%;
}

body.live-funded .lf-calc__field {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

body.live-funded .lf-calc__label {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 14px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
}

body.live-funded .lf-calc__label > span:first-child {
	color: #f6efe6;
}

body.live-funded .lf-calc__label-val {
	color: #ffb24d;
}

body.live-funded .lf-calc__chips {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 13px;
}

body.live-funded .lf-calc__chips--two {
	grid-template-columns: repeat(2, 1fr);
}

body.live-funded .lf-calc__chip {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 8px;
	border: 1px solid rgba(255, 170, 60, 0.1);
	border-radius: 11px;
	background: rgba(255, 255, 255, 0.03);
	color: #b7ac9d;
	font-size: 13.5px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
	cursor: pointer;
	transition:
		border-color 0.2s ease,
		background 0.2s ease,
		color 0.2s ease;
}

body.live-funded .lf-calc__chip:hover {
	border-color: rgba(255, 170, 60, 0.4);
}

body.live-funded .lf-calc__chip.is-active {
	border-color: #ff8a1e;
	background: rgba(255, 138, 30, 0.12);
	color: #ffb24d;
}

/* Sliders */
body.live-funded .lf-calc__slider {
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	cursor: pointer;
}

body.live-funded .lf-calc__slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border: 2px solid #1a0f02;
	border-radius: 50%;
	background: linear-gradient(160deg, #ffc36a 0%, #ff8a1e 100%);
	box-shadow: 0 4px 12px -2px rgba(255, 138, 30, 0.45);
	cursor: pointer;
}

body.live-funded .lf-calc__slider::-moz-range-thumb {
	box-sizing: border-box;
	width: 22px;
	height: 22px;
	border: 2px solid #1a0f02;
	border-radius: 50%;
	background: linear-gradient(160deg, #ffc36a 0%, #ff8a1e 100%);
	box-shadow: 0 4px 12px -2px rgba(255, 138, 30, 0.45);
	cursor: pointer;
}

body.live-funded .lf-calc__slider::-moz-range-track {
	height: 6px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
}

/* Result panel */
body.live-funded .lf-calc__result {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 28px 20px;
	border: 1px solid rgba(255, 170, 60, 0.28);
	border-radius: 18px;
	background: radial-gradient(
		120% 70% at 50% 0%,
		rgba(255, 138, 30, 0.16) 0%,
		rgba(255, 138, 30, 0) 65%
	);
	text-align: center;
}

body.live-funded .lf-calc__result-eyebrow {
	color: #8a8071;
	font-size: 13px;
	letter-spacing: 2px;
	text-transform: uppercase;
	line-height: 1;
}

body.live-funded .lf-calc__result-value {
	color: #ffb24d;
	font-size: 56px;
	font-weight: 800;
	line-height: 1;
}

body.live-funded .lf-calc__result-sub {
	color: #b7ac9d;
	font-size: 13px;
	line-height: 1.2;
}

body.live-funded .lf-calc__cta {
	width: 100%;
	margin-top: 16px;
}

body.live-funded .lf-calc__note {
	margin: 0;
	max-width: 680px;
	color: #8a8071;
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
}

/* Founder pricing */
body.live-funded .lf-calc__founder {
	display: flex;
	flex-direction: column;
	gap: 30px;
	width: 100%;
	padding: 22px 18px;
	border: 1px solid rgba(255, 170, 60, 0.28);
	border-radius: 20px;
	background: linear-gradient(90deg, #2b1f16 0%, #131212 100%);
}

body.live-funded .lf-calc__founder-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

body.live-funded .lf-calc__founder-title {
	margin: 0;
	color: #ffb24d;
	font-size: 20px;
	font-weight: 800;
	letter-spacing: -0.48px;
	line-height: 1;
}

body.live-funded .lf-calc__founder-desc {
	margin: 0;
	color: #b7ac9d;
	font-size: 12px;
	line-height: 1.2;
}

body.live-funded .lf-calc__founder-meter {
	display: flex;
	flex-direction: column;
	gap: 18px;
	width: 100%;
}

body.live-funded .lf-calc__founder-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	font-size: 12px;
	line-height: 1;
}

body.live-funded .lf-calc__founder-label {
	color: #b7ac9d;
	font-weight: var(--lf-fw-semibold);
}

body.live-funded .lf-calc__founder-count {
	color: #ffb24d;
	font-weight: 900;
}

body.live-funded .lf-calc__founder-bar {
	width: 100%;
	height: 12px;
	border: 1px solid rgba(255, 170, 60, 0.1);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.06);
	overflow: hidden;
}

body.live-funded .lf-calc__founder-fill {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 999px;
	background: linear-gradient(90deg, #ff8a1e 0%, #ffb24d 100%);
	overflow: hidden;
}

body.live-funded .lf-calc__founder-fill::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		transparent 0%,
		rgba(255, 255, 255, 0.45) 50%,
		transparent 100%
	);
	transform: translateX(-100%);
	animation: lf-shimmer 2.4s ease-in-out infinite;
}

@keyframes lf-shimmer {
	0% {
		transform: translateX(-100%);
	}
	60%,
	100% {
		transform: translateX(100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	body.live-funded .lf-calc__founder-fill::after {
		animation: none;
	}
}

@media (min-width: 992px) {
	body.live-funded .lf-calc {
		padding-block: 50px;
	}

	body.live-funded .lf-calc__card {
		flex-direction: row;
		align-items: center;
		gap: 40px;
		padding: 36px;
	}

	body.live-funded .lf-calc__controls {
		flex: 1;
		gap: 26px;
	}

	body.live-funded .lf-calc__chips {
		grid-template-columns: repeat(5, 1fr);
		gap: 6px;
	}

	body.live-funded .lf-calc__result {
		width: 460px;
		flex-shrink: 0;
		padding: 36px;
	}

	body.live-funded .lf-calc__result-value {
		font-size: 64px;
	}

	body.live-funded .lf-calc__cta {
		max-width: 406px;
	}

	body.live-funded .lf-calc__note {
		font-size: 14px;
	}

	body.live-funded .lf-calc__founder {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 40px;
		padding: 30px 35px;
	}

	body.live-funded .lf-calc__founder-info {
		flex: 1;
		gap: 6px;
	}

	body.live-funded .lf-calc__founder-title {
		font-size: 24px;
	}

	body.live-funded .lf-calc__founder-desc {
		font-size: 14px;
	}

	body.live-funded .lf-calc__founder-meter {
		width: 391px;
		flex-shrink: 0;
	}

	body.live-funded .lf-calc__founder-row {
		font-size: 14px;
	}
}

/* ===== Choose your funded account (pricing) ===== */
body.live-funded .lf-pricing {
	position: relative;
	padding-block: 30px;
}

body.live-funded .lf-pricing .wrapper {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-pricing .ts-pricing__panel {
	width: 100%;
}

body.live-funded .h26-pricing__includes {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
	width: 100%;
	padding: 23px 22px;
	border: 1px solid rgba(255, 170, 60, 0.1);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.02);
}

body.live-funded .h26-pricing__includes-title {
	font-size: 12px;
	line-height: 1;
	letter-spacing: 1.76px;
	text-transform: uppercase;
	color: #b7ac9d;
	text-align: center;
}

body.live-funded .h26-pricing__includes-list {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, auto);
	justify-content: center;
	gap: 10px 33px;
	margin: 0;
	padding: 0;
	list-style: none;
}

body.live-funded .h26-pricing__include {
	display: flex;
	align-items: center;
	gap: 6px;
}

body.live-funded .h26-pricing__include-check {
	display: inline-flex;
	flex-shrink: 0;
}

body.live-funded .h26-pricing__include-text {
	font-size: 12px;
	line-height: 1;
	color: #b7ac9d;
}

body.live-funded .h26-pricing__include-text strong {
	font-weight: 700;
	color: #f6efe6;
}

body.live-funded .h26-pricing__include-light {
	font-weight: 600;
}

body.live-funded .h26-pricing__include-muted {
	color: #b7ac9d;
}

@media (min-width: 992px) {
	body.live-funded .lf-pricing {
		padding-block: 50px;
	}

	/* Masked layer — fades at edge */
	body.live-funded .lf-pricing::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 0;
		background-image: url("../img/pricing-glow.svg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 2118px 1112px;
		-webkit-mask: linear-gradient(to bottom, #000 55%, transparent 100%);
		mask: linear-gradient(to bottom, #000 55%, transparent 100%);
		pointer-events: none;
	}

	body.live-funded .h26-pricing__includes {
		width: auto;
		padding: 23px 36px;
	}

	body.live-funded .h26-pricing__includes-list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px 33px;
		max-width: 720px;
	}

	body.live-funded .h26-pricing__include-text {
		font-size: 14px;
	}
}

/* ===== Not for you? Full refund ===== */
body.live-funded .lf-refund {
	--lf-wrapper-max: 1136px;
	padding-block: 30px;
}

body.live-funded .lf-refund__card {
	display: flex;
	align-items: flex-start;
	gap: 20px;
	padding: 20px;
	border: 1px solid rgba(255, 170, 60, 0.28);
	border-radius: 22px;
	background: linear-gradient(100deg, #141313 0%, rgba(44, 32, 23, 0.2) 100%);
}

body.live-funded .lf-refund__badge {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	flex-shrink: 0;
	width: 120px;
	height: 120px;
	border: 2px solid rgba(55, 210, 122, 0.4);
	border-radius: 50%;
	background: radial-gradient(
		circle at 50% 50%,
		rgba(55, 210, 122, 0.18) 0%,
		rgba(55, 210, 122, 0) 70%
	);
	color: #37d27a;
	text-align: center;
}

body.live-funded .lf-refund__badge-num {
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
}

body.live-funded .lf-refund__badge-label {
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
	line-height: 1;
}

body.live-funded .lf-refund__content {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

body.live-funded .lf-refund__title {
	margin: 0;
	color: #f6efe6;
	font-size: 24px;
	font-weight: var(--lf-fw-bold);
	line-height: 1.1;
}

body.live-funded .lf-refund__title span {
	color: #ffb24d;
}

body.live-funded .lf-refund__text {
	margin: 0;
	color: #b7ac9d;
	font-size: 14px;
	line-height: 1.2;
}

@media (min-width: 992px) {
	body.live-funded .lf-refund {
		padding-block: 50px;
	}

	body.live-funded .lf-refund__card {
		align-items: center;
		gap: 34px;
		padding: 40px;
	}

	body.live-funded .lf-refund__title {
		font-size: 34px;
	}

	body.live-funded .lf-refund__text {
		font-size: 16px;
	}
}

/* ===== How we stack up side by side (compare) ===== */
body.live-funded .lf-compare {
	--lf-wrapper-max: 1090px;
	padding-block: 30px;
}

body.live-funded .lf-compare .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-compare .cmpf {
	width: 100%;
}

@media (min-width: 992px) {
	body.live-funded .lf-compare {
		padding-block: 50px;
	}
}

/* ===== Every rule, in plain sight ===== */
body.live-funded .lf-rules {
	--lf-wrapper-max: 1026px;
	padding-block: 30px;
}

body.live-funded .lf-rules .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-rules__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	width: 100%;
}

body.live-funded .lf-rules__card {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	padding: 18px 20px;
	border: 1px solid #272727;
	border-radius: 12px;
	background: linear-gradient(
		90deg,
		rgba(38, 30, 22, 0.4) 0%,
		rgba(54, 35, 19, 0.1) 100%
	);
}

body.live-funded .lf-rules__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 170, 60, 0.28);
	border-radius: 11px;
	background: rgba(255, 138, 30, 0.1);
	font-size: 18px;
	line-height: 1;
}

body.live-funded .lf-rules__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
	min-width: 0;
}

body.live-funded .lf-rules__title {
	margin: 0;
	color: #f5f0e6;
	font-size: 16px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1.1;
}

body.live-funded .lf-rules__title span {
	color: #f5c249;
}

body.live-funded .lf-rules__text {
	margin: 0;
	color: #a8a8a8;
	font-size: 14px;
	line-height: 1.2;
}

body.live-funded .lf-rules__link {
	color: #ffb24d;
	font-size: 14px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
	text-decoration: underline;
	text-underline-offset: 4px;
}

body.live-funded .lf-rules__link:hover {
	color: var(--lf-orange-light);
}

@media (min-width: 992px) {
	body.live-funded .lf-rules {
		padding-block: 50px;
	}

	body.live-funded .lf-rules__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ===== What traders say (reviews) ===== */
body.live-funded .lf-reviews {
	padding-block: 30px;
}

body.live-funded .lf-reviews .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-reviews__grid {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

body.live-funded .lf-reviews__card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 30px 20px;
	border: 1px solid #272727;
	border-radius: 12px;
	background: #141414;
}

body.live-funded .lf-reviews__review {
	display: flex;
	flex-direction: column;
	gap: 19px;
	width: 100%;
}

body.live-funded .lf-reviews__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
}

body.live-funded .lf-reviews__stars {
	color: #00b67a;
	font-size: 14px;
	letter-spacing: 2px;
	line-height: 1;
}

body.live-funded .lf-reviews__verified {
	color: #10b981;
	font-size: 10px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
}

body.live-funded .lf-reviews__rtitle {
	margin: 0;
	color: var(--lf-cream);
	font-size: 14px;
	font-weight: var(--lf-fw-bold);
	line-height: 1.4;
}

body.live-funded .lf-reviews__body {
	margin: 18px 0 0;
	color: var(--lf-cream);
	font-size: 14px;
	line-height: 1.4;
}

body.live-funded .lf-reviews__foot {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	padding-top: 20px;
	border-top: 1px solid #272727;
}

body.live-funded .lf-reviews__avatar {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	color: #141313;
	font-size: 14px;
	font-weight: var(--lf-fw-bold);
	line-height: 1;
}

body.live-funded .lf-reviews__person {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}

body.live-funded .lf-reviews__name {
	color: var(--lf-cream);
	font-size: 14px;
	font-weight: var(--lf-fw-semibold);
	line-height: 1;
}

body.live-funded .lf-reviews__country {
	color: #a8a8a8;
	font-size: 12px;
	line-height: 1;
}

@media (min-width: 992px) {
	body.live-funded .lf-reviews {
		padding-block: 50px;
	}

	body.live-funded .lf-reviews__grid {
		flex-direction: row;
	}

	body.live-funded .lf-reviews__card {
		flex: 1;
		min-width: 0;
	}
}

/* Band glow behind rules + reviews (desktop) */
@media (min-width: 992px) {
	body.live-funded .lf-band {
		position: relative;
	}

	body.live-funded .lf-band > .lf-section {
		position: relative;
		z-index: 1;
	}

	/* Masked layer — fades at edge */
	body.live-funded .lf-band::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: 0;
		background-image: url("../img/band-glow.svg");
		background-repeat: no-repeat;
		background-position: center top;
		background-size: 2118px 1112px;
		-webkit-mask: linear-gradient(to bottom, #000 55%, transparent 100%);
		mask: linear-gradient(to bottom, #000 55%, transparent 100%);
		pointer-events: none;
	}
}

/* ===== Questions, answered (FAQ) ===== */
body.live-funded .lf-faq {
	padding-block: 30px;
}

body.live-funded .lf-faq .wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

body.live-funded .lf-faq .ts-faq {
	width: 100%;
	--ts-faq-item-bg: rgba(20, 19, 19, 0.9);
	--ts-faq-item-border: 1px solid #747474;
	--ts-faq-item-border-active: 1px solid #8b827c;
	--ts-faq-item-gap: 12px;
	--ts-faq-item-gap-md: 12px;
	--ts-faq-question-color: var(--lf-cream);
	--ts-faq-question-color-active: #ff9242;
	--ts-faq-question-weight: 600;
	--ts-faq-question-size: 1rem;
	--ts-faq-question-padding: 12px 20px;
	--ts-faq-answer-color: #a8a8a8;
	--ts-faq-answer-line-height: 1.2;
}

body.live-funded .lf-faq .ts-faq__answer strong {
	color: var(--lf-cream);
	font-weight: var(--lf-fw-semibold);
}

@media (min-width: 992px) {
	body.live-funded .lf-faq {
		padding-block: 50px;
	}

	body.live-funded .lf-faq .ts-faq {
		--ts-faq-item-border: 1px solid #272727;
		--ts-faq-question-size: 1.125rem;
	}

	body.live-funded .lf-faq .lf-head__title {
		max-width: none;
	}
}

/* ===== Your funded account is one click away (final CTA) ===== */
body.live-funded .lf-cta {
	--lf-wrapper-max: 794px;
	padding-block: 30px 100px;
}

body.live-funded .lf-cta__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	padding: 42px 0;
	border-radius: 12px;
	background: linear-gradient(
		to top,
		rgba(20, 19, 19, 0.2) 0%,
		rgba(20, 19, 19, 0.4) 11%,
		#2b1f16 100%
	);
	text-align: center;
}

/* Gradient border (orange at the top → grey → white) via mask */
body.live-funded .lf-cta__card::before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	border-radius: inherit;
	background: linear-gradient(
		180deg,
		#f3981f 0%,
		rgba(116, 116, 116, 0.2) 50%,
		rgba(255, 255, 255, 0.2) 100%
	);
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

body.live-funded .lf-cta__features {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 28px;
	padding-inline: 20px;
}

body.live-funded .lf-cta__feature {
	color: #a8a8a8;
	font-size: 14px;
	line-height: 1.2;
	white-space: nowrap;
}

@media (min-width: 992px) {
	body.live-funded .lf-cta {
		padding-block: 50px 130px;
	}

	body.live-funded .lf-cta__card {
		padding: 52px 42px;
	}

	body.live-funded .lf-cta__features {
		padding-inline: 0;
	}

	body.live-funded .lf-cta .lf-head__title {
		max-width: 710px;
	}
}

/* Scroll-reveal animation */
body.live-funded .lf-reveal-on-scroll {
	opacity: 0;
	transform: translateY(24px);
	transition:
		opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
		transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

body.live-funded .lf-reveal-on-scroll.is-in {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	body.live-funded .lf-reveal-on-scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
