/* ==========================================================================
   Prop Firm Guide. Tokens from the Figma "PFG" variables.
   ========================================================================== */

@font-face {
	font-family: "Neue Montreal";
	src: url("../fonts/NeueMontreal-Regular.woff2") format("woff2"), url("../fonts/NeueMontreal-Regular.woff") format("woff");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Neue Montreal";
	src: url("../fonts/NeueMontreal-Medium.woff2") format("woff2"), url("../fonts/NeueMontreal-Medium.woff") format("woff");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Neue Montreal";
	src: url("../fonts/NeueMontreal-Bold.woff2") format("woff2"), url("../fonts/NeueMontreal-Bold.woff") format("woff");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

:root {
	--pfg-white: #fff;
	--pfg-purple: #7f66ff;
	--pfg-deep: #5a3fe0;
	--pfg-muted: #686477;
	--pfg-line: #e8e4f0;
	--pfg-ink: #222;
	--pfg-wash: #f1eeff;
	--pfg-subtle: #faf9fd;
	--pfg-green: #18734c;
	--pfg-footer: #191433;
	--pfg-head: #f7f7f7;

	--pfg-radius-6: 6px;
	--pfg-radius-10: 10px;
	--pfg-radius-12: 12px;

	--pfg-max: 1320px;
	--pfg-gutter: 60px;
	--pfg-header-h: 78px;

	--pfg-font: "Neue Montreal", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}

body {
	margin: 0;
	background: var(--pfg-white);
	color: var(--pfg-ink);
	font-family: var(--pfg-font);
	font-size: 16px;
	line-height: 1.45;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	overflow-x: hidden;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, blockquote, fieldset {
	margin: 0;
	padding: 0;
}

ul, ol {
	list-style: none;
}

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

a {
	color: inherit;
}

button,
input,
select {
	font: inherit;
	color: inherit;
}

button {
	cursor: pointer;
}

:focus-visible {
	outline: 2px solid var(--pfg-deep);
	outline-offset: 2px;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip-path: inset(50%);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	z-index: 100;
	width: auto;
	height: auto;
	margin: 0;
	padding: 10px 16px;
	clip-path: none;
	background: var(--pfg-white);
	border-radius: var(--pfg-radius-10);
	color: var(--pfg-deep);
}

.container,
.site-header__inner,
.signup-band__inner,
.compare__inner,
.clear-rules__inner,
.faq__inner,
.site-footer__inner {
	width: min(var(--pfg-max), 100% - 2 * var(--pfg-gutter));
	margin-inline: auto;
}

/* Buttons ------------------------------------------------------------------ */

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border: 1px solid transparent;
	border-radius: var(--pfg-radius-10);
	font-size: 19px;
	font-weight: 500;
	line-height: 1.45;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.button--primary {
	background: var(--pfg-purple);
	color: var(--pfg-white);
}
.button--primary:hover {
	background: var(--pfg-deep);
}

.button--secondary {
	background: var(--pfg-white);
	border-color: var(--pfg-line);
	color: var(--pfg-deep);
}
.button--secondary:hover {
	border-color: var(--pfg-deep);
}

.button--ghost {
	background: var(--pfg-white);
	border-color: var(--pfg-deep);
	color: var(--pfg-deep);
}
.button--ghost:hover {
	background: var(--pfg-wash);
}

.button--sm {
	padding: 10px 16px;
	font-size: 13px;
}

.button--deep {
	background: var(--pfg-deep);
	color: var(--pfg-white);
}
.button--deep:hover {
	background: #4a30cc;
}

.button--outline {
	background: var(--pfg-white);
	border-color: var(--pfg-line);
	color: var(--pfg-deep);
}
.button--outline:hover {
	border-color: var(--pfg-deep);
}

.link-button {
	padding: 0;
	border: 0;
	background: none;
	color: var(--pfg-deep);
	font-weight: 500;
	text-decoration: underline;
}

/* Market toggle -------------------------------------------------------------- */

.market-toggle {
	display: inline-flex;
	background: var(--pfg-wash);
}

.market-toggle__option {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pfg-deep);
	font-weight: 700;
	line-height: 1.45;
	text-decoration: none;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.market-toggle__option[aria-current="page"] {
	background: var(--pfg-purple);
	color: var(--pfg-white);
}

.market-toggle__option:not([aria-current="page"]):hover {
	background: rgba(127, 102, 255, 0.12);
}

.market-toggle--sm {
	gap: 2.78px;
	padding: 2.78px;
	border-radius: 8.34px;
}
.market-toggle--sm .market-toggle__option {
	width: 100.08px;
	padding: 6.95px 11.12px;
	border-radius: 6.95px;
	font-size: 13.2px;
}

.market-toggle--md {
	gap: 4px;
	padding: 4px;
	border-radius: var(--pfg-radius-12);
}
.market-toggle--md .market-toggle__option {
	width: 98px;
	padding: 8px 16px;
	border-radius: var(--pfg-radius-10);
	font-size: 16px;
}

/* 01 / Navigation -------------------------------------------------------------- */

.site-header {
	position: relative;
	z-index: 20;
	padding-block: 20px;
}

.site-header__inner {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.site-header__logo {
	justify-self: start;
}

.site-header__logo img {
	width: 143px;
	height: 36px;
}

.site-nav {
	justify-self: end;
	position: relative;
}

.site-nav__list {
	display: flex;
	gap: 32px;
	color: var(--pfg-muted);
	font-size: 14px;
	font-weight: 500;
}

.site-nav__list a {
	text-decoration: none;
	white-space: nowrap;
}

.site-nav__list a:hover {
	color: var(--pfg-deep);
}

.site-nav__toggle {
	display: none;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--pfg-line);
	border-radius: var(--pfg-radius-10);
	background: var(--pfg-white);
}

.site-nav__bars,
.site-nav__bars::before,
.site-nav__bars::after {
	display: block;
	width: 16px;
	height: 1.5px;
	margin-inline: auto;
	background: var(--pfg-ink);
	border-radius: 2px;
	transition: transform 0.2s ease;
}

.site-nav__bars {
	position: relative;
}

.site-nav__bars::before,
.site-nav__bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.site-nav__bars::before {
	top: -5px;
}

.site-nav__bars::after {
	top: 5px;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bars {
	background: transparent;
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bars::before {
	transform: translateY(5px) rotate(45deg);
}

.site-nav__toggle[aria-expanded="true"] .site-nav__bars::after {
	transform: translateY(-5px) rotate(-45deg);
}

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

.hero {
	position: relative;
	isolation: isolate;
	background: linear-gradient(180deg, rgba(254, 254, 254, 0.15) 40%, rgba(41, 0, 253, 0.12) 100%);
}

/* Dashed arches start above the header, as in the Figma frame. */
.hero::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: calc(-1 * var(--pfg-header-h));
	right: 0;
	bottom: 0;
	left: 0;
	background: url("../img/hero/arches.svg") 50% -89.73px / 1440px 1079.72px no-repeat;
	pointer-events: none;
}

.hero__stage {
	position: relative;
	width: min(1300px, 100% - 2 * var(--pfg-gutter));
	min-height: 748px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-block: 120px 110px;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 765px;
	text-align: center;
}

.hero__title {
	margin-top: 34px;
	color: var(--pfg-ink);
	font-size: 60px;
	font-weight: 700;
	line-height: 72px;
}

.hero__title-accent {
	display: block;
	color: var(--pfg-purple);
}

.hero__sub {
	margin-top: 18px;
	color: var(--pfg-ink);
	font-size: 18px;
	line-height: 28px;
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 40px;
}

.hero__deco {
	position: absolute;
	height: auto;
	opacity: 0;
	transform: scale(0.6);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero__deco.is-loaded {
	opacity: 1;
	transform: scale(1);
}

/* Positions and sizes from the Figma "Deco logo" frames (1300px container). */
.hero__deco--1 { left: 12.056%; top: 444.49px; width: 58.35px; }
.hero__deco--2 { left: 7.332%; top: 116.72px; width: 61.82px; }
.hero__deco--3 { left: 25.055%; top: -5.41px; width: 61.82px; }
.hero__deco--4 { left: 80.222%; top: 63.87px; width: 56.05px; }
.hero__deco--5 { left: 90.638%; top: 328.6px; width: 56.84px; }
.hero__deco--6 { left: 71.021%; top: 626.4px; width: 62.46px; }

.hero__arrow {
	position: absolute;
	bottom: 35px;
	left: 50%;
	width: 32px;
	height: 48px;
	transform: translateX(-50%);
	animation: pfg-nudge 2.4s ease-in-out infinite;
}

.hero__chevron {
	position: absolute;
	left: 12.49%;
	width: 75.01%;
	height: 25%;
}

.hero__chevron--upper { top: 20.83%; }
.hero__chevron--lower { top: 54.16%; }

@keyframes pfg-nudge {
	0%, 100% { transform: translate(-50%, 0); }
	50% { transform: translate(-50%, 6px); }
}

/* 03 / Signup band --------------------------------------------------------------- */

.signup-band {
	background: var(--pfg-purple);
	color: var(--pfg-white);
	padding-block: 24px;
}

.signup-band__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.signup-band__promise {
	max-width: 535px;
}

.signup-band__title {
	font-size: 21px;
	font-weight: 500;
	line-height: 1.1;
}

.signup-band__sub {
	margin-top: 12px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 13px;
}

/* Signup form (band + closing CTA) ----------------------------------------------- */

.subscribe {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.subscribe--band {
	width: 650px;
	max-width: 100%;
}

.subscribe__row {
	display: flex;
	gap: 14px;
	width: 577px;
	max-width: 100%;
}

.subscribe__input {
	flex: 1 1 370px;
	min-width: 0;
	padding: 15px 11px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--pfg-radius-10);
	background: rgba(255, 255, 255, 0.1);
	color: var(--pfg-white);
	font-size: 18px;
	line-height: normal;
}

.subscribe__input::placeholder {
	color: rgba(255, 255, 255, 0.85);
	opacity: 1;
}

.subscribe__input:focus-visible {
	outline: 2px solid var(--pfg-white);
	outline-offset: 1px;
}

.subscribe__button {
	flex: 0 0 193px;
	padding: 17px 22px;
	border: 0;
	border-radius: var(--pfg-radius-10);
	background: var(--pfg-white);
	color: var(--pfg-purple);
	font-size: 17.9px;
	line-height: normal;
	text-transform: capitalize;
	transition: color 0.15s ease, background-color 0.15s ease;
}

.subscribe__button:hover {
	background: var(--pfg-wash);
	color: var(--pfg-deep);
}

.subscribe__button:focus-visible {
	outline-color: var(--pfg-white);
}

.subscribe.is-busy .subscribe__button {
	opacity: 0.7;
	cursor: progress;
}

.subscribe__chips {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 16px;
	border: 0;
	font-size: 12px;
	line-height: 1.45;
}

.subscribe__legend {
	float: left;
	padding: 0;
	margin-right: 0;
	color: rgba(255, 255, 255, 0.8);
}

.subscribe__chip {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: rgba(255, 255, 255, 0.57);
	font-weight: 500;
	cursor: pointer;
}

.subscribe__chip input {
	appearance: none;
	width: 11px;
	height: 11px;
	margin: 0;
	border: 1.3px solid var(--pfg-white);
	border-radius: 50%;
	background: transparent;
	cursor: pointer;
}

.subscribe__chip input:checked {
	background: var(--pfg-white);
	box-shadow: inset 0 0 0 2.2px var(--pfg-purple);
}

.subscribe__chip:has(input:checked) {
	color: var(--pfg-white);
}

.subscribe__chip input:focus-visible {
	outline: 2px solid var(--pfg-white);
	outline-offset: 2px;
}

.subscribe__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.subscribe__status:empty {
	display: none;
}

.subscribe__status {
	font-size: 14px;
	line-height: 1.45;
}

.subscribe__status.is-error {
	color: #ffe1e1;
}

.subscribe__deals {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 8px;
}

.subscribe__deal {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: var(--pfg-radius-10);
	background: rgba(255, 255, 255, 0.14);
	color: var(--pfg-white);
	font-size: 13px;
	font-weight: 500;
	text-decoration: none;
}

.subscribe__deal code {
	font-family: inherit;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.subscribe.is-done .subscribe__row,
.subscribe.is-done .subscribe__chips {
	display: none;
}

/* 05 / Compare --------------------------------------------------------------------- */

.compare {
	padding-block: 60px;
	scroll-margin-top: 16px;
}

.compare__inner {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.compare__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.compare__title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.45;
}

.compare__sub {
	margin-top: 4px;
	color: var(--pfg-muted);
	font-size: 15px;
}

.compare__controls {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
}

.compare__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.control {
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	height: 41px;
	padding: 10px 12px;
	border: 1px solid var(--pfg-line);
	border-radius: var(--pfg-radius-10);
	background: var(--pfg-white);
	color: var(--pfg-muted);
	font-size: 13px;
	font-weight: 500;
	line-height: 1.45;
}

.control:focus-within {
	border-color: var(--pfg-purple);
}

.control input,
.control select {
	min-width: 0;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	outline: 0;
	font-weight: 500;
}

.control input::placeholder {
	color: var(--pfg-muted);
	opacity: 1;
}

.control--search {
	width: 260px;
}

.control__icon {
	width: 16px;
	height: 16px;
	flex: none;
}

.control--select {
	width: 140px;
}

.control--select select {
	appearance: none;
	padding-right: 22px;
	cursor: pointer;
}

.control__chevron {
	position: absolute;
	right: 13px;
	width: 14px;
	height: 14px;
	pointer-events: none;
}

.control--sort {
	width: 137px;
	padding-inline: 16px;
	color: var(--pfg-deep);
}

.control--sort .control__chevron {
	right: 17px;
}

/* Table (desktop) ------------------------------------------------------------------ */

.firm-table {
	position: relative;
}

.firm-table__head,
.firm-row__main {
	display: grid;
	grid-template-columns: var(--firm-grid);
}

.firm-table__head {
	position: sticky;
	top: 0;
	z-index: 5;
	margin-bottom: 8px;
	padding: 12px 16px;
	border-radius: var(--pfg-radius-10);
	background: var(--pfg-head);
	color: var(--pfg-muted);
	font-size: 12px;
	font-weight: 500;
}

.firm-table__th {
	padding-inline: 8px;
	border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.firm-table__th:last-child {
	border-right: 0;
}

.firm-table__body {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.firm-table__empty {
	padding: 24px;
	border: 1px dashed var(--pfg-line);
	border-radius: var(--pfg-radius-12);
	color: var(--pfg-muted);
	font-size: 14px;
	text-align: center;
}

.firm-row[hidden] {
	display: none;
}

.firm-row__main {
	align-items: center;
	min-height: 106px;
	padding: 12px 16px;
	border: 1px solid var(--pfg-line);
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-white);
}

.firm-row.is-alt .firm-row__main {
	background: var(--pfg-subtle);
}

.firm-cell {
	min-width: 0;
	padding-inline: 8px;
	color: var(--pfg-ink);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.45;
	overflow-wrap: break-word;
}

.firm-cell--identity {
	display: flex;
	align-items: center;
	gap: 12px;
}

.firm-identity {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.firm-identity__name {
	color: var(--pfg-ink);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.firm-identity__name:hover {
	color: var(--pfg-deep);
	text-decoration: underline;
}

.firm-rating {
	color: var(--pfg-green);
	font-size: 11px;
	font-weight: 500;
	white-space: nowrap;
	cursor: help;
}

.firm-rating--new {
	color: var(--pfg-muted);
	cursor: default;
}

.firm-cell--price {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.firm-price {
	font-size: 15px;
	font-weight: 700;
}

.firm-price__note {
	color: var(--pfg-muted);
	font-size: 10px;
	font-weight: 400;
}

.firm-footnote-ref {
	font-size: 0.75em;
	cursor: help;
}

.firm-cell--promo {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 6px;
}

.promo__label {
	color: var(--pfg-deep);
	white-space: nowrap;
}

.promo__code {
	display: inline-flex;
	gap: 8px;
	padding: 4px 8px;
	border: 0;
	border-radius: var(--pfg-radius-6);
	background: var(--pfg-wash);
	color: var(--pfg-deep);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.45;
	letter-spacing: 0.01em;
	transition: background-color 0.15s ease;
}

.promo__code:hover {
	background: #e4deff;
}

.promo__code.is-copied {
	background: #e3f4ec;
	color: var(--pfg-green);
}

.promo__none {
	color: var(--pfg-muted);
}

.promo__none-note {
	color: var(--pfg-muted);
	font-size: 10px;
	font-weight: 400;
}

.firm-cell--actions {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.rules-toggle {
	display: inline-flex;
	align-items: center;
	padding: 0;
	border: 0;
	background: none;
	color: var(--pfg-deep);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.45;
}

.rules-toggle__icon {
	width: 12px;
	height: 12px;
	transition: transform 0.2s ease;
}

.rules-toggle[aria-expanded="true"] .rules-toggle__icon {
	transform: rotate(180deg);
}

.firm-row__rules {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 20px 24px;
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-wash);
}

.firm-row__rules[hidden] {
	display: none;
}

.rules-list {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px 24px;
	font-weight: 500;
}

.rules-list dt {
	color: var(--pfg-muted);
	font-size: 11px;
}

.rules-list dd {
	margin-top: 6px;
	font-size: 14px;
}

.rules-list .is-mobile-only {
	display: none;
}

.firm-row__rules-foot {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
}

.firm-row__rules-foot p {
	color: var(--pfg-muted);
	font-size: 12px;
}

.firm-row__rules-foot a {
	color: var(--pfg-deep);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.firm-row__rules-foot a:hover {
	text-decoration: underline;
}

/* Logos ---------------------------------------------------------------------------- */

.firm-logo {
	display: grid;
	place-items: center;
	flex: none;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: var(--pfg-radius-10);
	background: var(--logo-bg, transparent);
}

.firm-logo__img--cover {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.firm-logo__img--contain {
	width: 30px;
	height: 30px;
	object-fit: contain;
	border-radius: 6px;
}

.firm-logo__mono {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	background: var(--pfg-wash);
	color: var(--pfg-deep);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.logo-e8 {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	overflow: hidden;
	border-radius: 6px;
}

.logo-e8__base {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.logo-e8__mark {
	position: absolute;
	inset: 13.5% 20.5%;
	-webkit-mask-size: 17.7px 21.9px;
	mask-size: 17.7px 21.9px;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
}

.logo-e8__mark img {
	width: 100%;
	height: 100%;
}

.logo-gft {
	position: relative;
	display: block;
	width: 31.458px;
	padding-bottom: 0.542px;
}

.logo-gft__ring {
	display: block;
	padding: 1.085px;
	border-radius: 5.424px;
	background: linear-gradient(-45deg, rgb(146, 98, 249) 0%, rgb(231, 70, 148) 100%);
}

.logo-gft__frame {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.627px;
	border-radius: 5.424px;
	background: #100e0f;
}

.logo-gft__tile {
	display: grid;
	place-items: center;
	width: 26.034px;
	height: 26.034px;
	overflow: hidden;
	border-radius: 4.339px;
	background: #07192c;
}

.logo-gft__tile img {
	width: 26.034px;
	height: 26.034px;
}

.logo-gft__badge {
	position: absolute;
	right: -2.17px;
	bottom: -2.17px;
	width: 8.678px;
	height: 8.678px;
}

.logo-gft__badge img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 2.25%;
	width: 95.1%;
	height: 100%;
}

.logo-fp {
	position: relative;
	display: block;
	width: 30px;
	height: 30px;
	overflow: hidden;
}

.logo-fp__layer {
	position: absolute;
	display: block;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	mask-mode: alpha;
	-webkit-mask-composite: source-in;
	mask-composite: intersect;
}

.logo-fp__layer > img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	max-width: none;
}

.logo-fp__inner {
	position: absolute;
	display: block;
}

.logo-fp__inner img {
	width: 100%;
	height: 100%;
	max-width: none;
}

/* Table footer -------------------------------------------------------------------- */

.compare__foot {
	display: flex;
	flex-direction: column;
	gap: 8px;
	scroll-margin-top: 16px;
}

.compare__disclosure {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 8px 24px;
	padding: 12px 16px;
	border-radius: var(--pfg-radius-10);
	background: var(--pfg-wash);
	font-weight: 500;
}

.compare__disclosure p {
	color: var(--pfg-muted);
	font-size: 12px;
}

.compare__disclosure a {
	color: var(--pfg-deep);
	font-size: 14px;
	text-decoration: none;
}

.compare__disclosure a:hover {
	text-decoration: underline;
}

.compare__snapshot {
	color: var(--pfg-muted);
	font-size: 12px;
}

/* Testimonial ------------------------------------------------------------------------ */

.testimonial {
	padding: 60px 32px;
	background: #f2f0ff;
}

.testimonial__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	max-width: 1024px;
	margin-inline: auto;
	text-align: center;
}

.testimonial__slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
}

.testimonial__slide[hidden] {
	display: none;
}

.testimonial__quote {
	color: #101828;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.2;
}

.testimonial__who {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.testimonial__avatar {
	width: 64px;
	height: 64px;
	margin-bottom: 16px;
	border-radius: 50%;
	object-fit: cover;
}

.testimonial__name {
	color: #101828;
	font-size: 18px;
	font-weight: 500;
	line-height: 28px;
}

.testimonial__role {
	margin-top: 4px;
	color: #475467;
	font-size: 16px;
	line-height: 24px;
}

.testimonial__stars {
	display: flex;
	gap: 4px;
	margin-top: 16px;
}

.testimonial__stars img {
	width: 20px;
	height: 20px;
}

.testimonial__dots {
	display: flex;
	gap: 16px;
}

.testimonial__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: rgba(105, 65, 198, 0.21);
}

.testimonial__dot[aria-selected="true"] {
	background: #6941c6;
}

/* Clear rules ------------------------------------------------------------------------- */

.clear-rules {
	padding-block: 60px;
	background: var(--pfg-white);
}

.clear-rules__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.clear-rules__intro {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	max-width: 570px;
	text-align: center;
}

.clear-rules__title {
	color: var(--pfg-ink);
	font-size: 48px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.96px;
}

.clear-rules__sub {
	max-width: 502px;
	color: var(--pfg-muted);
	font-size: 16px;
}

.clear-rules__steps {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 25.2px;
	width: 100%;
	margin-top: 67.2px;
	counter-reset: none;
}

.step {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 25.2px;
	text-align: center;
}

.step--2 {
	margin-top: 84px;
}

.step__num {
	position: absolute;
	top: 25.2px;
	right: 9.68px;
	color: #dbdbdb;
	font-size: 120px;
	font-weight: 500;
	line-height: 80.64px;
	letter-spacing: -1.89px;
	pointer-events: none;
	user-select: none;
}

.step--2 .step__num { top: 15.2px; right: 21.39px; }
.step--3 .step__num { top: 21.2px; right: 18.69px; }

.step__icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 53px;
	height: 53.55px;
	background: var(--pfg-deep);
}

.step__icon::before {
	content: "";
	position: absolute;
	inset: 3.67px;
	background: var(--pfg-subtle);
	box-shadow: 0 2.1px 1.575px 0.525px rgba(149, 160, 178, 0.16);
}

.step__icon img {
	position: relative;
	width: 32.8px;
	height: 32.8px;
}

.step__title {
	position: relative;
	margin-top: 33.6px;
	color: #0c0c0c;
	font-size: 22px;
	font-weight: 500;
	line-height: 30.24px;
}

.step--1 .step__title {
	font-size: 23.2px;
}

.step__body {
	position: relative;
	margin-top: 12.5px;
	color: #59595f;
	font-size: 16.8px;
	line-height: 25.2px;
}

.step__doodle {
	position: absolute;
	width: 115.5px;
	height: 81.9px;
	object-fit: contain;
	object-position: bottom;
	pointer-events: none;
}

.step__doodle--in {
	left: 12.6px;
	top: 35.7px;
	transform: rotate(-135deg);
}

.step__doodle--out {
	right: -115.5px;
	bottom: 7.46px;
	transform: rotate(135deg);
}

/* 07 / FAQs ------------------------------------------------------------------------------ */

.faq {
	padding-block: 60px;
}

.faq__inner {
	display: flex;
	align-items: flex-start;
	gap: 96px;
}

.faq__intro {
	display: flex;
	flex: 0 0 360px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.faq__title {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.1;
}

.faq__sub {
	max-width: 330px;
	color: var(--pfg-muted);
	font-size: 16px;
}

.faq__email {
	color: var(--pfg-deep);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.faq__email:hover {
	text-decoration: underline;
}

.faq__list {
	display: flex;
	flex: 1 1 864px;
	flex-direction: column;
	gap: 8px;
	min-width: 0;
}

.faq__item {
	padding: 20px 24px;
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-subtle);
	transition: background-color 0.15s ease;
}

.faq__item[open] {
	background: var(--pfg-wash);
}

.faq__q {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 24px;
	font-size: 16px;
	font-weight: 500;
	list-style: none;
	cursor: pointer;
}

.faq__q::-webkit-details-marker {
	display: none;
}

.faq__sign::before {
	content: "+";
	color: var(--pfg-deep);
	font-size: 18px;
	line-height: 1.3;
}

.faq__item[open] .faq__sign::before {
	content: "−";
}

.faq__a {
	max-width: 780px;
	margin-top: 12px;
	color: var(--pfg-muted);
	font-size: 14px;
}

/* Closing signup ------------------------------------------------------------------------- */

.newsletter {
	position: relative;
	overflow: hidden;
	padding: 64px var(--pfg-gutter);
	background: var(--pfg-purple);
	color: var(--pfg-white);
}

.newsletter__grid {
	position: absolute;
	inset: 0;
	--grid-x: calc(50% + 13px - 1100px);
	background-image:
		linear-gradient(to right, rgba(255, 255, 255, 0.16) 1.146px, transparent 1.146px),
		linear-gradient(to bottom, rgba(255, 255, 255, 0.16) 1.146px, transparent 1.146px);
	background-position: var(--grid-x) -195px;
	background-size: 110px 110px;
	-webkit-mask-image: radial-gradient(751px 1440px at calc(50% - 127px) -195px, #000 0%, rgba(0, 0, 0, 0) 95%);
	mask-image: radial-gradient(751px 1440px at calc(50% - 127px) -195px, #000 0%, rgba(0, 0, 0, 0) 95%);
	pointer-events: none;
}

.newsletter__grid span {
	position: absolute;
	left: calc(var(--grid-x) + var(--c) * 110px);
	top: calc(-195px + var(--r) * 110px);
	width: 110px;
	height: 110px;
	background: rgba(90, 63, 224, 0.42);
}

.newsletter__inner {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 864px;
	margin-inline: auto;
	text-align: center;
}

.newsletter__title {
	color: #f6f2f2;
	font-size: 51.3px;
	font-weight: 500;
	line-height: 64.4px;
	letter-spacing: -1.6px;
}

.newsletter__sub {
	margin-top: 15.7px;
	color: #ebebeb;
	font-size: 16px;
	line-height: 24px;
}

.subscribe--cta {
	align-items: center;
	margin-top: 40px;
}

.subscribe--cta .subscribe__chips {
	justify-content: center;
	gap: 20px;
	font-size: 15px;
}

.subscribe--cta .subscribe__chip input {
	width: 13px;
	height: 13px;
}

.subscribe--cta .subscribe__input {
	flex-basis: 370px;
	background: #8c76ff;
}

/* 09 / Footer ----------------------------------------------------------------------------- */

.site-footer {
	padding-block: 40px 32px;
	background: var(--pfg-white);
}

.site-footer__inner {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.site-footer__nav,
.site-footer__legal {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px 24px;
}

.site-footer__logo img {
	width: 143px;
	height: 36px;
}

.site-footer__links,
.site-footer__legal ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
}

.site-footer a {
	color: var(--pfg-deep);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.site-footer a:hover {
	text-decoration: underline;
}

.site-footer__divider {
	width: 100%;
	height: 1px;
	margin: 0;
	border: 0;
	background: var(--pfg-line);
}

.site-footer__disclosure,
.site-footer__legal p {
	color: var(--pfg-muted);
	font-size: 12px;
}

/* Inner pages ----------------------------------------------------------------------------- */

.page-shell {
	width: min(960px, 100% - 2 * var(--pfg-gutter));
	margin: 24px auto 80px;
}

.page-shell--wide {
	width: min(var(--pfg-max), 100% - 2 * var(--pfg-gutter));
}

.page-eyebrow {
	color: var(--pfg-deep);
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}

.page-title {
	margin-top: 12px;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.1;
}

.page-lede {
	margin-top: 12px;
	color: var(--pfg-muted);
	font-size: 18px;
}

.prose {
	margin-top: 32px;
	font-size: 17px;
	line-height: 1.6;
}

.prose > * + * {
	margin-top: 1em;
}

.prose h2 {
	margin-top: 1.6em;
	font-size: 26px;
	line-height: 1.2;
}

.prose h3 {
	margin-top: 1.4em;
	font-size: 20px;
}

.prose ul,
.prose ol {
	padding-left: 1.3em;
	list-style: revert;
}

.prose a {
	color: var(--pfg-deep);
}

.firm-hero {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

.firm-hero .firm-logo {
	width: 64px;
	height: 64px;
	border-radius: 14px;
}

.firm-hero .firm-logo__img--contain,
.firm-hero .logo-e8,
.firm-hero .logo-fp {
	transform: scale(1.5);
}

.firm-hero .firm-rating {
	font-size: 14px;
}

.firm-stats {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 8px;
	margin-top: 32px;
}

.firm-stat {
	padding: 16px;
	border: 1px solid var(--pfg-line);
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-subtle);
}

.firm-stat dt {
	color: var(--pfg-muted);
	font-size: 12px;
	font-weight: 500;
}

.firm-stat dd {
	margin-top: 6px;
	font-size: 16px;
	font-weight: 700;
}

.firm-offer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 24px;
	padding: 20px 24px;
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-wash);
}

.firm-offer__text strong {
	display: block;
	color: var(--pfg-deep);
	font-size: 18px;
}

.firm-offer__text span {
	color: var(--pfg-muted);
	font-size: 14px;
}

.firm-offer__actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.firm-offer .promo__code {
	padding: 8px 12px;
	font-size: 14px;
}

.firm-section-title {
	margin-top: 40px;
	font-size: 22px;
	font-weight: 700;
}

.firm-rules {
	margin-top: 16px;
	padding: 20px 24px;
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-subtle);
}

.firm-rules .rules-list {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-note {
	margin-top: 24px;
	color: var(--pfg-muted);
	font-size: 12px;
}

.deal-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
	margin-top: 32px;
}

.deal-card {
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 20px;
	border: 1px solid var(--pfg-line);
	border-radius: var(--pfg-radius-12);
	background: var(--pfg-white);
}

.deal-card__top {
	display: flex;
	align-items: center;
	gap: 12px;
}

.deal-card__market {
	margin-left: auto;
	padding: 2px 8px;
	border-radius: 999px;
	background: var(--pfg-wash);
	color: var(--pfg-deep);
	font-size: 11px;
	font-weight: 500;
}

.deal-card__label {
	color: var(--pfg-deep);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.1;
}

.deal-card__meta {
	color: var(--pfg-muted);
	font-size: 13px;
}

.deal-card__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-top: auto;
}

/* Responsive ------------------------------------------------------------------------------ */

@media (max-width: 1240px) {
	:root {
		--pfg-gutter: 40px;
	}

	.hero__stage {
		width: calc(100% - 2 * var(--pfg-gutter));
	}
}

/* Cards from tablet down: same data, no sideways scrolling. */
@media (max-width: 1100px) {
	.firm-table__head {
		display: none;
	}

	.firm-table__body {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
		gap: 12px;
	}

	.firm-row {
		display: flex;
		flex-direction: column;
	}

	.firm-row__main {
		grid-template-columns: 1fr 1fr;
		gap: 14px 8px;
		min-height: 0;
		padding: 16px;
		align-items: start;
	}

	.firm-row.is-alt .firm-row__main {
		background: var(--pfg-white);
	}

	.firm-row.is-expanded .firm-row__main {
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.firm-row.is-expanded .firm-row__rules {
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}

	.firm-cell {
		padding-inline: 0;
	}

	.firm-cell--identity {
		grid-column: 1 / -1;
		padding-bottom: 2px;
	}

	.firm-cell.is-secondary {
		display: none;
	}

	.firm-cell[data-label]:not(.firm-cell--promo)::before {
		content: attr(data-label);
		display: block;
		margin-bottom: 2px;
		color: var(--pfg-muted);
		font-size: 11px;
		font-weight: 500;
	}

	.firm-cell--price .firm-price {
		font-size: 16px;
	}

	.firm-cell--promo {
		grid-column: 1 / -1;
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 8px;
		padding: 10px 12px;
		border-radius: var(--pfg-radius-10);
		background: var(--pfg-subtle);
	}

	.firm-cell--promo .promo__code {
		margin-left: auto;
		padding: 6px 10px;
		font-size: 13px;
	}

	.firm-cell--actions {
		grid-column: 1 / -1;
		flex-direction: row;
		justify-content: space-between;
		gap: 12px;
	}

	.firm-cell--actions .button {
		flex: 1;
		padding-block: 12px;
		font-size: 15px;
	}

	.firm-row__rules {
		padding: 16px;
	}

	.rules-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rules-list .is-mobile-only {
		display: block;
	}

	.firm-row__rules-foot {
		flex-direction: column;
		gap: 8px;
	}

	.firm-table__empty {
		grid-column: 1 / -1;
	}
}

@media (max-width: 960px) {
	.site-header__inner {
		grid-template-columns: auto 1fr auto;
	}

	.site-header .market-toggle {
		justify-self: center;
	}

	.site-nav__toggle {
		display: grid;
		place-items: center;
	}

	.site-nav__list {
		position: absolute;
		top: calc(100% + 8px);
		right: 0;
		display: none;
		flex-direction: column;
		gap: 0;
		min-width: 200px;
		padding: 8px;
		border: 1px solid var(--pfg-line);
		border-radius: var(--pfg-radius-12);
		background: var(--pfg-white);
		box-shadow: 0 12px 32px rgba(25, 20, 51, 0.12);
	}

	.site-nav.is-open .site-nav__list {
		display: flex;
	}

	.site-nav__list a {
		display: block;
		padding: 10px 12px;
		border-radius: 8px;
		font-size: 15px;
	}

	.site-nav__list a:hover {
		background: var(--pfg-wash);
	}

	.hero__stage {
		min-height: 0;
		padding-block: 72px 96px;
	}

	.hero__title {
		margin-top: 0;
		font-size: 48px;
		line-height: 56px;
	}

	.hero__deco--1,
	.hero__deco--5 {
		display: none;
	}

	.hero__deco--2 { top: 12px; left: 0; width: 44px; }
	.hero__deco--3 { top: -24px; left: 22%; width: 40px; }
	.hero__deco--4 { top: 8px; left: auto; right: 0; width: 44px; }
	.hero__deco--6 { top: auto; bottom: 40px; left: auto; right: 6%; width: 44px; }

	.signup-band__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.subscribe--band {
		width: 100%;
	}

	.clear-rules__steps {
		grid-template-columns: 1fr;
		max-width: 520px;
		margin-top: 32px;
		gap: 8px;
	}

	.step--2 {
		margin-top: 0;
	}

	.step__doodle {
		display: none;
	}

	.faq__inner {
		flex-direction: column;
		gap: 32px;
	}

	.faq__intro {
		flex-basis: auto;
	}

	.faq__list {
		width: 100%;
		flex-basis: auto;
	}

	.newsletter__title {
		font-size: 40px;
		line-height: 48px;
	}

	.site-footer__nav {
		flex-wrap: wrap;
	}

	.deal-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.firm-stats {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	:root {
		--pfg-gutter: 16px;
		--pfg-header-h: 124px;
	}

	.site-header {
		padding-block: 16px 12px;
	}

	.site-header__inner {
		grid-template-columns: 1fr auto;
		row-gap: 14px;
	}

	.site-header__logo img {
		width: 128px;
		height: 32px;
	}

	.site-header .market-toggle {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
	}

	.site-header .market-toggle--sm .market-toggle__option {
		flex: 1;
		width: auto;
		min-height: 44px;
		font-size: 15px;
	}

	.hero__stage {
		padding-block: 56px 88px;
	}

	.hero__title {
		font-size: 36px;
		line-height: 42px;
	}

	.hero__sub {
		font-size: 16px;
		line-height: 24px;
	}

	.hero__actions {
		flex-direction: column;
		align-items: stretch;
		margin-top: 28px;
	}

	.hero__actions .button {
		font-size: 17px;
	}

	.hero__deco {
		display: none;
	}

	.subscribe__row {
		flex-direction: column;
		gap: 10px;
	}

	.subscribe__input,
	.subscribe--cta .subscribe__input {
		flex-basis: auto;
		width: 100%;
	}

	.subscribe__button {
		flex-basis: auto;
		width: 100%;
	}

	.subscribe--cta {
		align-items: stretch;
		width: 100%;
	}

	.subscribe--cta .subscribe__chips {
		justify-content: flex-start;
		gap: 12px 16px;
	}

	.subscribe__legend {
		float: none;
		width: 100%;
	}

	.compare {
		padding-block: 40px;
	}

	.compare__head {
		flex-direction: column;
		align-items: stretch;
		gap: 16px;
	}

	.compare__title {
		font-size: 26px;
		line-height: 1.2;
	}

	.compare .market-toggle--md {
		width: 100%;
	}

	.compare .market-toggle--md .market-toggle__option {
		flex: 1;
		width: auto;
		min-height: 44px;
	}

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

	.compare__filters {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.control--search {
		grid-column: 1 / -1;
		width: auto;
	}

	.control--select,
	.control--sort {
		width: auto;
	}

	.firm-table__body {
		grid-template-columns: 1fr;
	}

	.rules-list {
		grid-template-columns: 1fr 1fr;
		gap: 12px 16px;
	}

	.testimonial {
		padding: 48px 16px;
	}

	.testimonial__quote {
		font-size: 19px;
	}

	.clear-rules {
		padding-block: 48px;
	}

	.clear-rules__title {
		font-size: 36px;
	}

	.faq {
		padding-block: 48px;
	}

	.faq__title {
		font-size: 32px;
	}

	.faq__item {
		padding: 16px 18px;
	}

	.newsletter {
		padding-block: 48px;
	}

	.newsletter__title {
		font-size: 32px;
		line-height: 38px;
		letter-spacing: -0.8px;
	}

	.site-footer__nav {
		flex-direction: column;
		align-items: flex-start;
	}

	.site-footer__legal {
		flex-direction: column-reverse;
		align-items: flex-start;
	}

	.page-title {
		font-size: 32px;
	}

	.deal-grid,
	.firm-stats {
		grid-template-columns: 1fr;
	}
}
