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

:root {
	--fpt-primary: #2f6fed;
	--fpt-secondary: #ff8a00;
	--fpt-bg: #f5f7fb;
	--fpt-card: #ffffff;
	--fpt-heading: #1f2d3d;
	--fpt-body: #5b6b7a;
	--fpt-success: #16a34a;
	--fpt-danger: #dc2626;
	--fpt-warning: #f59e0b;
	--fpt-line: #dbe3ef;
	--fpt-soft: #eef4ff;
	--fpt-font: Inter, Arial, sans-serif;
	--fpt-header-bg: #2f6fed;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--fpt-bg);
	color: var(--fpt-body);
	font-family: var(--fpt-font);
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0;
}

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

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	color: var(--fpt-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0 0 14px;
	color: var(--fpt-heading);
	line-height: 1.16;
	letter-spacing: 0;
}

h1 {
	font-size: 46px;
}

h2 {
	font-size: 34px;
}

h3 {
	font-size: 20px;
}

p {
	margin: 0 0 18px;
}

button,
input,
select,
textarea {
	font: inherit;
	letter-spacing: 0;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	z-index: 1000;
	top: 12px;
	left: 12px;
	width: auto;
	height: auto;
	padding: 10px 14px;
	clip: auto;
	background: #fff;
	border-radius: 8px;
}

.fpt-container {
	width: min(1180px, calc(100% - 32px));
	margin: 0 auto;
}

.fpt-narrow {
	max-width: 860px;
}

.fpt-section {
	padding: 76px 0;
}

.fpt-section-soft {
	background: #eef4ff;
}

.fpt-section-blue {
	background: #1f5fd8;
	color: #fff;
}

.fpt-section-blue h2,
.fpt-section-blue .fpt-kicker {
	color: #fff;
}

.fpt-section-blue p {
	color: #dceaff;
}

.fpt-announcement-bar {
	background: #153f91;
	color: #fff;
	text-align: center;
	font-size: 14px;
}

.fpt-announcement-bar a {
	display: block;
	padding: 8px 16px;
}

.fpt-site-header {
	position: relative;
	z-index: 50;
	background: var(--fpt-header-bg);
	color: #fff;
	box-shadow: 0 10px 26px rgba(31, 45, 61, 0.12);
}

.fpt-site-header.is-sticky {
	position: sticky;
	top: 0;
}

.fpt-header-inner {
	display: flex;
	align-items: center;
	gap: 26px;
	min-height: 64px;
}

.fpt-brand,
.fpt-app-brand {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: inherit;
	font-weight: 800;
}

.fpt-brand img {
	max-height: 38px;
	width: auto;
}

.fpt-brand-mark {
	display: inline-grid;
	place-items: center;
	width: 30px;
	height: 30px;
	border-radius: 8px;
	background: #ffb547;
	color: #153f91;
	font-weight: 900;
}

.fpt-brand-mark svg,
.fpt-icon svg {
	width: 18px;
	height: 18px;
	stroke: currentColor;
}

.fpt-brand-text {
	line-height: 1;
}

.fpt-main-navigation {
	margin-left: auto;
}

.fpt-menu {
	display: flex;
	align-items: center;
	gap: 22px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.fpt-menu a {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}

.fpt-header-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fpt-login-link {
	display: inline-flex;
	align-items: center;
	min-height: 36px;
	padding: 0 14px;
	border-radius: 8px;
	background: #fff;
	color: var(--fpt-primary);
	font-size: 14px;
	font-weight: 800;
}

.fpt-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 44px;
	padding: 0 18px;
	border: 1px solid transparent;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 800;
	line-height: 1;
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.fpt-btn:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 22px rgba(31, 45, 61, 0.12);
}

.fpt-btn-primary {
	background: var(--fpt-primary);
	color: #fff;
}

.fpt-btn-secondary {
	background: var(--fpt-secondary);
	color: #fff;
}

.fpt-btn-outline {
	border-color: var(--fpt-line);
	background: #fff;
	color: var(--fpt-heading);
}

.fpt-btn-small {
	min-height: 36px;
	padding: 0 14px;
	font-size: 14px;
}

.fpt-btn-block {
	width: 100%;
}

.fpt-menu-toggle,
.fpt-sidebar-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.fpt-menu-toggle span,
.fpt-sidebar-toggle span {
	display: block;
	width: 20px;
	height: 2px;
	margin: 4px auto;
	background: currentColor;
	border-radius: 4px;
}

.fpt-hero {
	position: relative;
	overflow: hidden;
	padding: 76px 0 56px;
	background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.fpt-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: linear-gradient(135deg, rgba(47, 111, 237, 0.08) 25%, transparent 25%),
		linear-gradient(225deg, rgba(255, 138, 0, 0.06) 25%, transparent 25%);
	background-size: 48px 48px;
	opacity: 0.5;
}

.fpt-hero-grid {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
	align-items: center;
	gap: 44px;
}

.fpt-hero-copy p {
	max-width: 590px;
	font-size: 18px;
}

.fpt-kicker {
	margin: 0 0 10px;
	color: var(--fpt-primary);
	font-size: 14px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.fpt-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 26px 0;
}

.fpt-trust-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.fpt-trust-row span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 8px 10px;
	border: 1px solid #dbe3ef;
	border-radius: 8px;
	background: #fff;
	color: var(--fpt-heading);
	font-size: 14px;
	font-weight: 700;
}

.fpt-hero-media {
	padding: 12px;
	border: 1px solid #dbe3ef;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.76);
	box-shadow: 0 22px 46px rgba(31, 45, 61, 0.14);
}

.fpt-section-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 30px;
}

.fpt-section-head p {
	max-width: 650px;
}

.fpt-split {
	display: grid;
	grid-template-columns: 0.9fr 1.1fr;
	align-items: center;
	gap: 46px;
}

.fpt-product-preview,
.fpt-panel-card,
.fpt-feature-card,
.fpt-tool-card,
.fpt-post-card,
.fpt-auth-card,
.fpt-mini-dashboard,
.fpt-stat-card,
.fpt-cta-band {
	border: 1px solid var(--fpt-line);
	border-radius: 8px;
	background: var(--fpt-card);
	box-shadow: 0 12px 30px rgba(31, 45, 61, 0.08);
}

.fpt-product-preview {
	padding: 22px;
}

.fpt-preview-toolbar {
	display: flex;
	gap: 7px;
	margin-bottom: 24px;
}

.fpt-preview-toolbar span {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #cbd5e1;
}

.fpt-preview-chart {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: end;
	gap: 14px;
	height: 190px;
	padding: 18px;
	border-radius: 8px;
	background: #eef4ff;
}

.fpt-preview-chart span {
	display: block;
	border-radius: 8px 8px 0 0;
	background: var(--fpt-primary);
}

.fpt-preview-chart span:nth-child(even) {
	background: var(--fpt-secondary);
}

.fpt-preview-list {
	display: grid;
	gap: 12px;
	margin-top: 20px;
}

.fpt-preview-list span {
	height: 16px;
	border-radius: 8px;
	background: #e2e8f0;
}

.fpt-tools-grid,
.fpt-feature-grid,
.fpt-post-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
}

.fpt-tool-card,
.fpt-feature-card {
	position: relative;
	padding: 22px;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fpt-tool-card:hover,
.fpt-feature-card:hover,
.fpt-post-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 18px 36px rgba(31, 45, 61, 0.12);
}

.fpt-tool-icon,
.fpt-stat-icon,
.fpt-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
}

.fpt-icon {
	width: 18px;
	height: 18px;
}

.fpt-tool-icon {
	width: 56px;
	height: 56px;
	border-radius: 8px;
	background: #eef4ff;
	color: var(--fpt-primary);
}

.fpt-tool-icon .fpt-icon,
.fpt-tool-icon svg {
	width: 24px;
	height: 24px;
}

.fpt-card-tag {
	display: inline-flex;
	margin: 16px 0 8px;
	padding: 4px 9px;
	border-radius: 8px;
	background: rgba(255, 138, 0, 0.12);
	color: #9a4f00;
	font-size: 12px;
	font-weight: 800;
}

.fpt-card-link {
	display: inline-flex;
	margin-top: 8px;
	color: var(--fpt-primary);
	font-weight: 900;
}

.fpt-feature-card .fpt-icon {
	width: 46px;
	height: 46px;
	margin-bottom: 14px;
	border-radius: 8px;
	background: #eef4ff;
	color: var(--fpt-primary);
	font-weight: 900;
}

.fpt-preview-image {
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

.fpt-post-card {
	overflow: hidden;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fpt-post-thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.fpt-post-card-body {
	padding: 18px;
}

.fpt-post-card-body span {
	display: block;
	margin-bottom: 8px;
	color: var(--fpt-primary);
	font-size: 13px;
	font-weight: 800;
}

.fpt-faq-list {
	display: grid;
	gap: 12px;
}

.fpt-faq-list details {
	border: 1px solid var(--fpt-line);
	border-radius: 8px;
	background: #fff;
}

.fpt-faq-list summary {
	cursor: pointer;
	padding: 18px 20px;
	color: var(--fpt-heading);
	font-weight: 900;
}

.fpt-faq-list details p {
	padding: 0 20px 18px;
}

.fpt-cta-band {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 32px;
	background: var(--fpt-primary);
	color: #fff;
}

.fpt-cta-band h2 {
	color: #fff;
}

.fpt-cta-band p {
	color: #dceaff;
}

.fpt-site-footer {
	background: #173f87;
	color: #dceaff;
}

.fpt-footer-grid {
	display: grid;
	grid-template-columns: 1.4fr repeat(4, 1fr);
	gap: 28px;
	padding: 54px 0;
}

.fpt-footer-grid h2 {
	color: #fff;
	font-size: 16px;
}

.fpt-footer-grid ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.fpt-footer-grid li {
	margin-bottom: 8px;
}

.fpt-footer-grid a {
	color: #dceaff;
	font-size: 14px;
}

.fpt-footer-brand p {
	max-width: 280px;
	margin-top: 18px;
}

.fpt-socials {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.fpt-footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	padding: 16px 0;
}

.fpt-footer-bottom p {
	margin: 0;
	font-size: 14px;
}

.fpt-page-hero {
	padding: 64px 0;
	background: #eef4ff;
}

.fpt-breadcrumb {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 18px;
	color: var(--fpt-body);
	font-size: 14px;
}

.fpt-page-content,
.fpt-article {
	max-width: 860px;
}

.fpt-page-header,
.fpt-article-header {
	margin-bottom: 28px;
}

.fpt-content-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 26px;
	align-items: start;
}

.fpt-article-image {
	width: 100%;
	margin-bottom: 28px;
	border-radius: 8px;
}

.entry-content > * {
	max-width: 100%;
}

.entry-content a {
	color: var(--fpt-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.fpt-sidebar .widget,
.fpt-widget {
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid var(--fpt-line);
	border-radius: 8px;
	background: #fff;
}

.fpt-empty-state {
	padding: 26px;
	border: 1px dashed #b9c8dc;
	border-radius: 8px;
	background: #fff;
	text-align: center;
}

.fpt-empty-state .fpt-btn {
	margin-top: 8px;
}

.fpt-large-empty {
	padding: 54px 28px;
}

.fpt-calculator-panel {
	padding: 24px;
}

.fpt-calculator-result {
	margin-top: 22px;
	padding: 22px;
	border-radius: 8px;
	background: #eef4ff;
}

.fpt-calculator-result span {
	display: block;
	color: var(--fpt-body);
	font-weight: 800;
}

.fpt-calculator-result strong {
	display: block;
	margin: 8px 0;
	color: var(--fpt-heading);
	font-size: 30px;
}

.fpt-auth-page {
	padding: 64px 0;
	background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
}

.fpt-auth-brand {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 22px;
	color: var(--fpt-heading);
	font-size: 18px;
	font-weight: 900;
}

.fpt-auth-brand .fpt-brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: linear-gradient(135deg, #2f6fed 0%, #1d4fae 100%);
	color: #fff;
	box-shadow: 0 18px 32px rgba(47, 111, 237, 0.22);
}

.fpt-auth-brand .fpt-brand-mark svg {
	width: 22px;
	height: 22px;
}

.fpt-auth-layout {
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 34px;
	align-items: center;
}

.fpt-auth-copy p {
	font-size: 18px;
}

.fpt-auth-benefits {
	display: grid;
	gap: 12px;
	margin-top: 28px;
}

.fpt-auth-benefits article {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 16px;
	border: 1px solid rgba(219, 227, 239, 0.9);
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.8);
	box-shadow: 0 16px 32px rgba(31, 45, 61, 0.06);
}

.fpt-auth-benefits .fpt-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: #fff;
	color: var(--fpt-primary);
}

.fpt-auth-benefits .fpt-icon svg {
	width: 18px;
	height: 18px;
}

.fpt-auth-benefits strong,
.fpt-auth-benefits span {
	display: block;
}

.fpt-auth-benefits strong {
	color: var(--fpt-heading);
}

.fpt-auth-card {
	padding: 26px;
	border: 1px solid rgba(219, 227, 239, 0.9);
	box-shadow: 0 20px 40px rgba(31, 45, 61, 0.08);
}

.fpt-auth-form,
.fpt-form-grid,
.fpt-filter-bar {
	display: grid;
	gap: 14px;
}

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

.fpt-form-single {
	grid-template-columns: 1fr;
}

.fpt-form-wide,
.fpt-form-actions {
	grid-column: 1 / -1;
}

.fpt-form-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.fpt-form-intro {
	display: grid;
	gap: 6px;
	padding: 16px 18px;
	border: 1px solid rgba(219, 227, 239, 0.84);
	border-radius: 14px;
	background: #f8fbff;
}

.fpt-form-intro p {
	margin: 0;
	font-size: 14px;
}

.fpt-auth-form label span,
.fpt-form-grid label span {
	display: block;
	margin-bottom: 7px;
	color: var(--fpt-heading);
	font-size: 14px;
	font-weight: 800;
}

.fpt-auth-form input,
.fpt-form-grid input,
.fpt-form-grid select,
.fpt-form-grid textarea,
.fpt-filter-bar input,
.fpt-filter-bar select,
.fpt-app-search input {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid var(--fpt-line);
	border-radius: 8px;
	background: #fff;
	color: var(--fpt-heading);
	outline: none;
}

.fpt-auth-form input:focus,
.fpt-form-grid input:focus,
.fpt-form-grid select:focus,
.fpt-form-grid textarea:focus,
.fpt-filter-bar input:focus,
.fpt-filter-bar select:focus,
.fpt-app-search input:focus {
	border-color: var(--fpt-primary);
	box-shadow: 0 0 0 3px rgba(47, 111, 237, 0.14);
}

.fpt-check-row {
	display: flex;
	align-items: center;
	gap: 9px;
}

.fpt-check-row input {
	width: auto;
	min-height: auto;
}

.fpt-auth-row {
	display: flex;
	justify-content: space-between;
	gap: 14px;
	align-items: center;
}

.fpt-auth-row a,
.fpt-auth-alt a {
	color: var(--fpt-primary);
	font-weight: 800;
}

.fpt-auth-alt {
	margin: 0;
	text-align: center;
}

.fpt-notice {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 8px;
	font-weight: 800;
}

.fpt-notice.is-success {
	background: rgba(22, 163, 74, 0.12);
	color: #166534;
}

.fpt-notice.is-error {
	background: rgba(220, 38, 38, 0.12);
	color: #991b1b;
}

.fpt-is-shell-page .fpt-site-header,
.fpt-is-shell-page .fpt-site-footer {
	display: none;
}

body.fpt-is-shell-page {
	background: linear-gradient(180deg, #edf3ff 0%, #f8fbff 22%, #f5f7fb 100%);
}

.fpt-is-shell-page .fpt-section {
	padding: 0;
}

.fpt-site-shell {
	min-height: 100vh;
}

.fpt-full-page {
	width: 100%;
}

.fpt-app-shell {
	display: grid;
	grid-template-columns: 280px minmax(0, 1fr);
	min-height: 100vh;
	background: transparent;
}

.fpt-app-sidebar {
	position: sticky;
	top: 0;
	height: 100vh;
	padding: 24px 18px 28px;
	background: #173f87;
	color: #dceaff;
	overflow-y: auto;
	border-right: 1px solid rgba(255, 255, 255, 0.08);
	box-shadow: 24px 0 48px rgba(15, 35, 76, 0.22);
}

.fpt-app-brand {
	gap: 12px;
	margin-bottom: 30px;
	color: #fff;
	font-size: 18px;
	font-weight: 900;
}

.fpt-app-brand .fpt-brand-mark {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.14);
	color: #fff;
}

.fpt-app-brand .fpt-brand-mark svg {
	width: 22px;
	height: 22px;
}

.fpt-app-nav {
	display: grid;
	gap: 7px;
}

.fpt-app-nav a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 46px;
	padding: 0 14px;
	border-radius: 12px;
	color: #dceaff;
	font-weight: 800;
	transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.fpt-app-nav a.is-active,
.fpt-app-nav a:hover {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	transform: translateX(2px);
}

.fpt-app-nav .fpt-icon {
	width: 20px;
	height: 20px;
}

.fpt-app-nav .fpt-icon svg {
	width: 20px;
	height: 20px;
}

.fpt-app-main {
	min-width: 0;
}

.fpt-app-topbar {
	position: sticky;
	top: 0;
	z-index: 20;
	display: grid;
	grid-template-columns: auto minmax(180px, 1fr) minmax(220px, 360px) auto;
	align-items: center;
	gap: 16px;
	padding: 18px 24px;
	border-bottom: 1px solid var(--fpt-line);
	background: rgba(248, 251, 255, 0.94);
	backdrop-filter: blur(12px);
	box-shadow: 0 16px 28px rgba(31, 45, 61, 0.06);
}

.fpt-app-topbar h1 {
	margin-bottom: 0;
	font-size: 26px;
}

.fpt-app-date {
	margin: 0 0 4px;
	color: var(--fpt-body);
	font-size: 13px;
	font-weight: 800;
}

.fpt-top-actions {
	display: flex;
	align-items: center;
	gap: 10px;
}

.fpt-user-chip {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 6px 10px;
	border: 1px solid var(--fpt-line);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.96);
	color: var(--fpt-heading);
	font-size: 14px;
	font-weight: 800;
}

.fpt-user-chip img {
	width: 30px;
	height: 30px;
	border-radius: 50%;
}

.fpt-app-content {
	padding: 24px;
}

.fpt-dashboard-hero {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 18px;
	padding: 26px;
	border: 1px solid rgba(219, 227, 239, 0.86);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 12px 30px rgba(31, 45, 61, 0.08);
}

.fpt-dashboard-hero h2 {
	margin-bottom: 8px;
}

.fpt-dashboard-hero p {
	margin: 0;
}

.fpt-dashboard-hero-actions {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-end;
	color: var(--fpt-heading);
	font-weight: 800;
}

.fpt-dashboard-hero-actions > span {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #eef4ff;
	color: var(--fpt-primary);
	font-size: 13px;
}

.fpt-stat-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 18px;
}

.fpt-stat-grid-compact {
	grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.fpt-stat-card {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	min-height: 118px;
	padding: 20px 18px;
	border: 1px solid rgba(219, 227, 239, 0.84);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(31, 45, 61, 0.07);
}

.fpt-stat-icon {
	width: 46px;
	height: 46px;
	border-radius: 14px;
	background: #eef4ff;
	color: var(--fpt-primary);
	box-shadow: inset 0 0 0 1px rgba(47, 111, 237, 0.08);
}

.fpt-stat-icon svg {
	width: 20px;
	height: 20px;
}

.fpt-stat-copy {
	display: grid;
	gap: 6px;
	min-width: 0;
}

.fpt-stat-label {
	color: var(--fpt-body);
	font-size: 13px;
	font-weight: 800;
}

.fpt-stat-value {
	display: block;
	margin: 0;
	color: var(--fpt-heading);
	font-size: 24px;
	line-height: 1.2;
}

.fpt-stat-meta {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eef4ff;
	color: var(--fpt-primary);
	font-size: 12px;
	font-weight: 800;
}

.fpt-stat-card.is-income .fpt-stat-icon,
.fpt-stat-card.is-income .fpt-stat-meta {
	background: rgba(22, 163, 74, 0.12);
	color: #15803d;
}

.fpt-stat-card.is-expense .fpt-stat-icon,
.fpt-stat-card.is-expense .fpt-stat-meta {
	background: rgba(220, 38, 38, 0.1);
	color: #b91c1c;
}

.fpt-stat-card.is-balance .fpt-stat-icon,
.fpt-stat-card.is-budget .fpt-stat-icon {
	background: rgba(47, 111, 237, 0.12);
	color: var(--fpt-primary);
}

.fpt-stat-card.is-savings .fpt-stat-icon,
.fpt-stat-card.is-savings .fpt-stat-meta {
	background: rgba(249, 115, 22, 0.14);
	color: #c2410c;
}

.fpt-stat-card.is-change .fpt-stat-icon,
.fpt-stat-card.is-change .fpt-stat-meta {
	background: rgba(14, 165, 233, 0.14);
	color: #0369a1;
}

.fpt-dashboard-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
	gap: 18px;
	margin-bottom: 18px;
}

.fpt-dashboard-grid-wide {
	grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
}

.fpt-panel-card {
	padding: 22px;
	border: 1px solid rgba(219, 227, 239, 0.84);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 14px 32px rgba(31, 45, 61, 0.07);
}

.fpt-card-head {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 20px;
	margin-bottom: 18px;
}

.fpt-card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fpt-card-head p {
	margin: 0;
}

.fpt-chart-card {
	min-height: 360px;
}

.fpt-chart {
	width: 100%;
	max-height: 280px;
}

.fpt-table-wrap {
	overflow-x: auto;
}

.fpt-table {
	width: 100%;
	border-collapse: collapse;
}

.fpt-table th,
.fpt-table td {
	padding: 13px 12px;
	border-bottom: 1px solid #edf2f7;
	text-align: left;
	vertical-align: middle;
}

.fpt-table th {
	color: var(--fpt-heading);
	font-size: 13px;
	font-weight: 900;
}

.fpt-table tr:hover td {
	background: #f8fbff;
}

.fpt-category-pill,
.fpt-status,
.fpt-type-pill {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pill-color, #2f6fed) 14%, white);
	color: var(--fpt-heading);
	font-size: 12px;
	font-weight: 800;
}

.fpt-status .fpt-icon,
.fpt-type-pill .fpt-icon {
	width: 14px;
	height: 14px;
}

.fpt-status.is-success {
	background: rgba(22, 163, 74, 0.12);
	color: #15803d;
}

.fpt-status.is-warning {
	background: rgba(245, 158, 11, 0.14);
	color: #b45309;
}

.fpt-status.is-danger {
	background: rgba(220, 38, 38, 0.12);
	color: #b91c1c;
}

.fpt-status.is-neutral {
	background: rgba(100, 116, 139, 0.12);
	color: #475569;
}

.fpt-type-pill.is-income {
	background: rgba(22, 163, 74, 0.12);
	color: #15803d;
}

.fpt-type-pill.is-expense {
	background: rgba(220, 38, 38, 0.1);
	color: #b91c1c;
}

.is-positive {
	color: var(--fpt-success);
	font-weight: 900;
}

.is-negative,
.fpt-danger-link {
	color: var(--fpt-danger);
	font-weight: 900;
}

.fpt-amount-value {
	display: inline-block;
}

.fpt-table-actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 8px;
}

.fpt-table-action {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	min-height: 34px;
	padding: 0 10px;
	border: 1px solid var(--fpt-line);
	border-radius: 8px;
	background: #fff;
	color: var(--fpt-heading);
	font-size: 13px;
	font-weight: 800;
}

.fpt-table-action:hover {
	background: #f8fbff;
}

.fpt-table-action.is-danger {
	border-color: rgba(220, 38, 38, 0.18);
	color: #b91c1c;
}

.fpt-budget-list,
.fpt-category-list,
.fpt-announcement-list,
.fpt-help-grid {
	display: grid;
	gap: 14px;
}

.fpt-budget-item,
.fpt-category-item,
.fpt-announcement-list article,
.fpt-help-grid article {
	padding: 16px;
	border: 1px solid var(--fpt-line);
	border-radius: 8px;
	background: #fff;
}

.fpt-category-item {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	align-items: center;
	gap: 12px;
}

.fpt-category-dot {
	width: 14px;
	height: 14px;
	border-radius: 50%;
}

.fpt-category-item small {
	display: block;
	color: var(--fpt-body);
}

.fpt-category-card {
	gap: 16px;
	padding: 18px;
	border-radius: 16px;
}

.fpt-category-list-rich {
	gap: 12px;
}

.fpt-category-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: color-mix(in srgb, var(--category-color, #2f6fed) 14%, white);
	color: var(--category-color, #2f6fed);
	box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--category-color, #2f6fed) 18%, white);
}

.fpt-category-icon .fpt-icon,
.fpt-category-icon svg {
	width: 20px;
	height: 20px;
}

.fpt-category-copy {
	display: grid;
	gap: 8px;
	min-width: 0;
}

.fpt-inline-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
}

.fpt-inline-note {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: #f3f7ff;
	color: var(--fpt-body);
	font-size: 12px;
	font-weight: 800;
}

.fpt-budget-top,
.fpt-budget-meta {
	display: flex;
	justify-content: space-between;
	gap: 10px;
}

.fpt-budget-meta {
	flex-wrap: wrap;
	margin-top: 8px;
	color: var(--fpt-body);
	font-size: 13px;
}

.fpt-progress {
	height: 10px;
	margin-top: 12px;
	overflow: hidden;
	border-radius: 8px;
	background: #e2e8f0;
}

.fpt-progress span {
	display: block;
	height: 100%;
	border-radius: inherit;
}

.fpt-budget-item {
	display: grid;
	gap: 14px;
	padding: 18px;
	border-radius: 16px;
}

.fpt-budget-item .fpt-table-actions {
	justify-content: flex-start;
}

.fpt-budget-item.is-warning {
	border-color: rgba(245, 158, 11, 0.32);
	background: linear-gradient(180deg, #fff 0%, #fffaf0 100%);
}

.fpt-budget-item.is-danger {
	border-color: rgba(220, 38, 38, 0.24);
	background: linear-gradient(180deg, #fff 0%, #fff5f5 100%);
}

.fpt-budget-percent {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 58px;
	padding: 8px 10px;
	border-radius: 999px;
	background: #eef4ff;
	color: var(--fpt-primary);
	font-size: 13px;
	font-weight: 900;
}

.fpt-budget-item.is-warning .fpt-budget-percent {
	background: rgba(245, 158, 11, 0.14);
	color: #b45309;
}

.fpt-budget-item.is-danger .fpt-budget-percent {
	background: rgba(220, 38, 38, 0.12);
	color: #b91c1c;
}

.fpt-goal-grid {
	margin-bottom: 18px;
}

.fpt-goal-card {
	display: grid;
	gap: 12px;
}

.fpt-goal-card p {
	margin: 0;
}

.fpt-goal-icon {
	display: inline-grid;
	place-items: center;
	width: 48px;
	height: 48px;
	border-radius: 14px;
	background: #eef4ff;
	color: var(--fpt-primary);
}

.fpt-goal-icon .fpt-icon,
.fpt-goal-icon svg {
	width: 20px;
	height: 20px;
}

.fpt-advice-card {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 18px 20px;
	border: 1px solid #dbe3ef;
	border-radius: 8px;
	background: #fff7ed;
	color: #7c3f00;
}

.fpt-advice-card p {
	margin: 6px 0 0;
}

.fpt-advice-card.compact {
	display: grid;
}

.fpt-filter-bar {
	grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
	margin-bottom: 18px;
	padding: 18px;
	border: 1px solid rgba(219, 227, 239, 0.84);
	border-radius: 16px;
	background: #f8fbff;
}

.fpt-filter-pills {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.fpt-filter-pills span {
	padding: 7px 10px;
	border-radius: 8px;
	background: #eef4ff;
	color: var(--fpt-heading);
	font-size: 13px;
	font-weight: 800;
}

.fpt-report-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
}

.fpt-profile-grid {
	align-items: start;
	grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
}

.fpt-profile-summary {
	display: grid;
	gap: 16px;
}

.fpt-profile-avatar {
	display: inline-grid;
	place-items: center;
	width: 112px;
	height: 112px;
	border-radius: 26px;
	background: linear-gradient(135deg, #eef4ff 0%, #dceaff 100%);
	overflow: hidden;
}

.fpt-profile-avatar-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fpt-profile-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.fpt-profile-list {
	display: grid;
	gap: 10px;
}

.fpt-profile-list article {
	display: grid;
	gap: 6px;
	padding: 14px 16px;
	border: 1px solid rgba(219, 227, 239, 0.84);
	border-radius: 14px;
	background: #f8fbff;
}

.fpt-profile-list article span {
	color: var(--fpt-body);
	font-size: 14px;
}

.fpt-profile-shortcuts {
	display: grid;
	gap: 10px;
}

.fpt-profile-shortcuts .fpt-table-action {
	justify-content: flex-start;
	min-height: 40px;
}

.fpt-auth-gate {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	align-items: center;
	gap: 34px;
	padding: 64px 0;
}

.fpt-mini-dashboard {
	padding: 22px;
}

.fpt-mini-card,
.fpt-mini-row,
.fpt-mini-chart {
	border-radius: 8px;
	background: #eef4ff;
}

.fpt-mini-card {
	height: 70px;
	margin-bottom: 16px;
}

.fpt-mini-chart {
	height: 150px;
	margin-bottom: 16px;
	background: linear-gradient(135deg, #eef4ff, #dceaff);
}

.fpt-mini-row {
	height: 16px;
	margin-bottom: 12px;
}

.fpt-mini-row.short {
	width: 70%;
}

.admin-bar .fpt-app-sidebar {
	top: 32px;
	height: calc(100vh - 32px);
}

.admin-bar .fpt-app-topbar {
	top: 32px;
}

@media (max-width: 1180px) {
	.fpt-stat-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

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

@media (max-width: 960px) {
	h1 {
		font-size: 36px;
	}

	h2 {
		font-size: 28px;
	}

	.fpt-menu-toggle {
		display: inline-block;
	}

	.fpt-main-navigation {
		position: absolute;
		top: 64px;
		left: 16px;
		right: 16px;
		display: none;
		padding: 16px;
		border-radius: 8px;
		background: #173f87;
	}

	.fpt-main-navigation.is-open {
		display: block;
	}

	.fpt-menu {
		display: grid;
		gap: 12px;
	}

	.fpt-header-actions {
		margin-left: auto;
	}

	.fpt-hero-grid,
	.fpt-split,
	.fpt-auth-layout,
	.fpt-content-grid,
	.fpt-dashboard-grid,
	.fpt-dashboard-grid-wide,
	.fpt-auth-gate {
		grid-template-columns: 1fr;
	}

	.fpt-hero-grid {
		gap: 30px;
	}

	.fpt-tools-grid,
	.fpt-feature-grid,
	.fpt-post-grid,
	.fpt-report-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fpt-app-shell {
		grid-template-columns: 1fr;
	}

	.fpt-app-sidebar {
		position: fixed;
		inset: 0 auto 0 0;
		z-index: 40;
		width: 280px;
		transform: translateX(-100%);
		transition: transform 0.2s ease;
	}

	.fpt-app-sidebar.is-open {
		transform: translateX(0);
	}

	.fpt-sidebar-toggle {
		display: inline-block;
		background: var(--fpt-primary);
	}

	.fpt-app-topbar {
		grid-template-columns: auto minmax(0, 1fr);
	}

	.fpt-app-search,
	.fpt-top-actions {
		grid-column: 1 / -1;
	}

	.fpt-top-actions {
		flex-wrap: wrap;
	}

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

	.admin-bar .fpt-app-sidebar {
		top: 32px;
		height: calc(100vh - 32px);
	}
}

@media (max-width: 720px) {
	body {
		font-size: 15px;
	}

	h1 {
		font-size: 31px;
	}

	h2 {
		font-size: 25px;
	}

	.fpt-section,
	.fpt-hero,
	.fpt-page-hero,
	.fpt-auth-page {
		padding: 46px 0;
	}

	.fpt-header-inner {
		gap: 10px;
	}

	.fpt-login-link {
		display: none;
	}

	.fpt-hero-copy p,
	.fpt-auth-copy p {
		font-size: 16px;
	}

	.fpt-section-head,
	.fpt-cta-band,
	.fpt-dashboard-hero,
	.fpt-card-head,
	.fpt-advice-card {
		display: grid;
		align-items: start;
	}

	.fpt-tools-grid,
	.fpt-feature-grid,
	.fpt-post-grid,
	.fpt-report-grid,
	.fpt-stat-grid,
	.fpt-form-grid,
	.fpt-filter-bar,
	.fpt-footer-grid {
		grid-template-columns: 1fr;
	}

	.fpt-app-content,
	.fpt-app-topbar {
		padding: 16px;
	}

	.fpt-dashboard-hero-actions {
		align-items: flex-start;
	}

	.fpt-category-item,
	.fpt-inline-meta,
	.fpt-profile-chips {
		justify-content: flex-start;
	}

	.fpt-category-item {
		grid-template-columns: 1fr;
	}

	.fpt-budget-top {
		flex-direction: column;
		align-items: flex-start;
	}

	.fpt-category-card {
		padding: 16px;
	}

	.fpt-profile-avatar {
		width: 88px;
		height: 88px;
		border-radius: 20px;
	}

	.fpt-filter-bar {
		padding: 14px;
	}

	.fpt-table thead {
		display: none;
	}

	.fpt-table,
	.fpt-table tbody,
	.fpt-table tr,
	.fpt-table td {
		display: block;
		width: 100%;
	}

	.fpt-table tr {
		margin-bottom: 12px;
		padding: 12px;
		border: 1px solid var(--fpt-line);
		border-radius: 8px;
		background: #fff;
	}

	.fpt-table td {
		display: flex;
		justify-content: space-between;
		gap: 12px;
		padding: 8px 0;
		border-bottom: 1px solid #edf2f7;
	}

	.fpt-table td::before {
		content: attr(data-label);
		color: var(--fpt-heading);
		font-weight: 900;
	}

	.fpt-table-actions {
		justify-content: flex-start;
	}

	.admin-bar .fpt-app-sidebar {
		top: 46px;
		height: calc(100vh - 46px);
	}

	.admin-bar .fpt-app-topbar {
		top: 46px;
	}
}

@media (max-width: 480px) {
	.fpt-container {
		width: min(100% - 24px, 1180px);
	}

	.fpt-header-actions .fpt-btn {
		display: none;
	}

	.fpt-actions,
	.fpt-trust-row {
		display: grid;
	}

	.fpt-btn {
		width: 100%;
	}

	.fpt-stat-card strong {
		font-size: 20px;
	}
}

/* Homepage quality polish */
.fpt-site-header {
	background: linear-gradient(90deg, #153f91 0%, #215fd0 100%);
	box-shadow: 0 14px 34px rgba(15, 35, 77, 0.18);
}

.fpt-site-header .fpt-brand {
	gap: 12px;
	min-width: max-content;
}

.fpt-site-header .fpt-brand img {
	max-width: 180px;
	max-height: 44px;
	object-fit: contain;
}

.fpt-site-header .fpt-brand-mark {
	width: 38px;
	height: 38px;
	background: linear-gradient(135deg, #ffffff 0%, #eaf2ff 100%);
	color: #1f5fd8;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4), 0 12px 24px rgba(8, 24, 56, 0.18);
}

.fpt-site-header .fpt-brand-mark svg {
	width: 23px;
	height: 23px;
}

.fpt-site-header .fpt-brand-text {
	color: #fff;
	font-size: 18px;
	font-weight: 900;
	line-height: 1;
}

.fpt-site-header .fpt-menu a {
	position: relative;
	opacity: 0.92;
	transition: opacity 0.18s ease, color 0.18s ease;
}

.fpt-site-header .fpt-menu a:hover,
.fpt-site-header .fpt-menu .current-menu-item > a {
	color: #fff;
	opacity: 1;
}

.fpt-site-header .fpt-menu a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: -10px;
	height: 2px;
	border-radius: 8px;
	background: #ffb547;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.18s ease, transform 0.18s ease;
}

.fpt-site-header .fpt-menu a:hover::after,
.fpt-site-header .fpt-menu .current-menu-item > a::after {
	opacity: 1;
	transform: translateY(0);
}

.fpt-login-link {
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.fpt-login-link:hover {
	background: #fff;
	color: #153f91;
}

.fpt-btn-secondary {
	background: linear-gradient(135deg, #ff9a1f 0%, #f97316 100%);
	color: #fff;
	box-shadow: 0 14px 28px rgba(249, 115, 22, 0.28);
}

.fpt-btn-secondary:hover,
.fpt-btn-secondary:focus {
	background: linear-gradient(135deg, #ffad3d 0%, #fb7d19 100%);
	color: #fff;
	box-shadow: 0 18px 34px rgba(249, 115, 22, 0.34);
}

.fpt-btn-primary {
	background: linear-gradient(135deg, #2f6fed 0%, #1d4fae 100%);
	box-shadow: 0 14px 30px rgba(47, 111, 237, 0.24);
}

.fpt-btn-outline:hover,
.fpt-btn-outline:focus {
	border-color: rgba(47, 111, 237, 0.34);
	background: #f7fbff;
	color: #1d4fae;
}

.fpt-hero {
	background:
		radial-gradient(circle at 82% 22%, rgba(47, 111, 237, 0.14), transparent 32%),
		linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
}

.fpt-hero::before {
	opacity: 0.18;
}

.fpt-hero-media {
	padding: 14px;
	border-color: rgba(47, 111, 237, 0.16);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 24px 60px rgba(30, 64, 133, 0.18);
}

.fpt-hero-media > img {
	display: none;
}

.fpt-finance-mockup {
	display: grid;
	gap: 16px;
	min-height: 390px;
	padding: 18px;
	border-radius: 8px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: inset 0 0 0 1px rgba(219, 227, 239, 0.88);
}

.fpt-mockup-topbar,
.fpt-mockup-summary,
.fpt-mockup-body,
.fpt-mockup-bars {
	position: relative;
}

.fpt-mockup-topbar {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #6b7b8f;
	font-size: 13px;
}

.fpt-mockup-topbar span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #dbe3ef;
}

.fpt-mockup-topbar span:first-child {
	background: #ff8a00;
}

.fpt-mockup-topbar strong {
	margin-left: auto;
	color: #1f2d3d;
	font-weight: 900;
}

.fpt-mockup-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 12px;
}

.fpt-mockup-summary div {
	padding: 14px;
	border: 1px solid #e6edf7;
	border-radius: 8px;
	background: #fff;
}

.fpt-mockup-summary span,
.fpt-preview-stats span,
.fpt-preview-list div span {
	display: block;
	margin: 0 0 4px;
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
}

.fpt-mockup-summary strong,
.fpt-preview-stats strong,
.fpt-preview-list div strong {
	color: #1f2d3d;
	font-size: 18px;
	font-weight: 900;
}

.fpt-mockup-body {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(150px, 0.8fr);
	gap: 14px;
}

.fpt-mockup-chart {
	position: relative;
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	align-items: end;
	gap: 10px;
	min-height: 205px;
	padding: 18px;
	overflow: hidden;
	border-radius: 8px;
	background: #f1f6ff;
}

.fpt-chart-grid {
	position: absolute;
	inset: 18px;
	background: repeating-linear-gradient(to bottom, rgba(47, 111, 237, 0.12) 0 1px, transparent 1px 34px);
}

.fpt-mockup-chart span {
	position: relative;
	z-index: 1;
	display: block;
	border-radius: 8px 8px 3px 3px;
	background: linear-gradient(180deg, #2f6fed 0%, #1d4fae 100%);
	box-shadow: 0 10px 18px rgba(47, 111, 237, 0.18);
}

.fpt-mockup-chart span:nth-child(2n) {
	background: linear-gradient(180deg, #ff9a1f 0%, #f97316 100%);
}

.fpt-mockup-side {
	display: grid;
	gap: 12px;
}

.fpt-donut {
	position: relative;
	min-height: 154px;
	border-radius: 8px;
	background: conic-gradient(#2f6fed 0 44%, #ff8a00 44% 71%, #16a34a 71% 88%, #dbe3ef 88% 100%);
	box-shadow: inset 0 0 0 18px #fff;
}

.fpt-donut::after {
	content: "Kategori";
	position: absolute;
	inset: 50% auto auto 50%;
	transform: translate(-50%, -50%);
	color: #1f2d3d;
	font-size: 12px;
	font-weight: 900;
}

.fpt-mini-alert {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px;
	border-radius: 8px;
	background: rgba(255, 138, 0, 0.11);
	color: #8a4700;
	font-size: 12px;
	font-weight: 900;
}

.fpt-mini-alert .fpt-icon {
	width: 18px;
	height: 18px;
}

.fpt-mockup-bars {
	display: grid;
	gap: 10px;
}

.fpt-mockup-bars span {
	display: block;
	height: 10px;
	border-radius: 8px;
	background: #e8eef7;
	overflow: hidden;
}

.fpt-mockup-bars i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #16a34a 0%, #2f6fed 100%);
}

.fpt-preview-stats {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.fpt-preview-stats div,
.fpt-preview-list div {
	padding: 14px;
	border: 1px solid #e6edf7;
	border-radius: 8px;
	background: #f8fbff;
}

.fpt-preview-list div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.fpt-preview-list div span {
	height: auto;
	background: transparent;
}

.fpt-section-blue {
	background:
		radial-gradient(circle at 72% 25%, rgba(255, 255, 255, 0.18), transparent 28%),
		linear-gradient(135deg, #153f91 0%, #2369e6 100%);
}

.fpt-section-blue .fpt-split {
	position: relative;
}

.fpt-preview-image {
	display: none;
}

.fpt-section-blue .fpt-split::after {
	content: "";
	display: block;
	min-height: 330px;
	border-radius: 8px;
	background:
		linear-gradient(90deg, #eaf2ff 0 16%, transparent 16%),
		linear-gradient(#ffffff, #ffffff) 22% 12% / 18% 16% no-repeat,
		linear-gradient(#ffffff, #ffffff) 44% 12% / 18% 16% no-repeat,
		linear-gradient(#ffffff, #ffffff) 66% 12% / 18% 16% no-repeat,
		repeating-linear-gradient(to bottom, rgba(47, 111, 237, 0.13) 0 1px, transparent 1px 34px) 23% 42% / 48% 38% no-repeat,
		linear-gradient(135deg, #2f6fed 0%, #2f6fed 58%, transparent 59%) 23% 42% / 48% 38% no-repeat,
		conic-gradient(#ff8a00 0 38%, #2f6fed 38% 72%, #16a34a 72% 100%) 78% 43% / 112px 112px no-repeat,
		linear-gradient(#f8fbff, #f8fbff) 73% 80% / 22% 12% no-repeat,
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.76), 0 24px 54px rgba(8, 24, 56, 0.22);
}

.fpt-tool-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding: 24px;
}

.fpt-tool-card-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 18px;
}

.fpt-tool-icon {
	background: linear-gradient(135deg, rgba(47, 111, 237, 0.12) 0%, rgba(47, 111, 237, 0.04) 100%);
	box-shadow: inset 0 0 0 1px rgba(47, 111, 237, 0.12);
}

.fpt-card-tag {
	margin: 0;
	white-space: nowrap;
	background: rgba(255, 138, 0, 0.13);
	color: #8a4700;
}

.fpt-tool-card h3 {
	margin-bottom: 10px;
}

.fpt-tool-card p {
	margin-bottom: 22px;
}

.fpt-card-link {
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	width: 100%;
	margin-top: auto;
	padding: 11px 12px;
	border-radius: 8px;
	background: #f4f8ff;
	color: #1d4fae;
}

.fpt-card-link:hover {
	background: #eaf2ff;
	color: #153f91;
}

.fpt-card-link .fpt-icon {
	width: 16px;
	height: 16px;
}

.fpt-feature-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.fpt-post-card {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}

.fpt-post-thumb {
	display: block;
	background: #eef4ff;
}

.fpt-post-thumb img,
.fpt-post-placeholder {
	width: 100%;
	aspect-ratio: 16 / 9;
}

.fpt-post-placeholder {
	display: grid;
	place-items: center;
	gap: 10px;
	padding: 24px;
	background:
		radial-gradient(circle at 78% 22%, rgba(255, 138, 0, 0.16), transparent 30%),
		linear-gradient(135deg, #eaf2ff 0%, #ffffff 100%);
	color: #1d4fae;
	font-weight: 900;
}

.fpt-post-placeholder .fpt-icon {
	width: 46px;
	height: 46px;
	padding: 11px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(47, 111, 237, 0.14);
}

.fpt-post-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px;
}

.fpt-post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.fpt-post-card-body .fpt-post-meta span,
.fpt-post-card-body .fpt-post-meta time {
	display: inline-flex;
	align-items: center;
	margin: 0;
	font-size: 12px;
	font-weight: 900;
}

.fpt-post-category {
	padding: 5px 8px;
	border-radius: 8px;
	background: rgba(47, 111, 237, 0.1);
	color: #1d4fae;
}

.fpt-post-card-body time {
	color: #64748b;
}

.fpt-post-card h3 {
	margin-bottom: 10px;
}

.fpt-post-card p {
	margin-bottom: 18px;
}

.fpt-post-cta {
	margin-top: auto;
	color: #1d4fae;
	font-weight: 900;
}

@media (max-width: 960px) {
	.fpt-finance-mockup {
		min-height: auto;
	}

	.fpt-section-blue .fpt-split::after {
		min-height: 300px;
	}
}

@media (max-width: 720px) {
	.fpt-site-header .fpt-brand-text {
		font-size: 16px;
	}

	.fpt-mockup-summary,
	.fpt-preview-stats {
		grid-template-columns: 1fr;
	}

	.fpt-mockup-body {
		grid-template-columns: 1fr;
	}

	.fpt-mockup-side {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 480px) {
	.fpt-finance-mockup,
	.fpt-product-preview {
		padding: 14px;
	}

	.fpt-mockup-side,
	.fpt-preview-list div {
		grid-template-columns: 1fr;
	}

	.fpt-section-blue .fpt-split::after {
		min-height: 255px;
	}

	.fpt-card-tag {
		white-space: normal;
	}
}

/* Final public polish */
.fpt-brand-mark {
	background: transparent;
	color: currentColor;
}

.fpt-site-header .fpt-brand-mark,
.fpt-site-footer .fpt-brand-mark {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.fpt-site-header .fpt-brand-mark svg,
.fpt-site-footer .fpt-brand-mark svg {
	width: 25px;
	height: 25px;
}

.fpt-brand.has-custom-logo {
	gap: 0;
	min-width: 0;
}

.fpt-brand.has-custom-logo .fpt-brand-text {
	display: none;
}

.fpt-brand-logo {
	display: block;
	width: auto;
	height: auto;
	object-fit: contain;
}

.fpt-site-header .fpt-brand.has-custom-logo {
	max-width: min(320px, 42vw);
}

.fpt-site-header .fpt-brand-logo {
	max-width: min(320px, 42vw);
	max-height: 48px;
}

.fpt-site-footer .fpt-brand-logo {
	max-width: 240px;
	max-height: 78px;
}

.fpt-header-actions .fpt-btn-primary {
	background: linear-gradient(135deg, #ff9a1f 0%, #f97316 100%);
	box-shadow: 0 14px 28px rgba(249, 115, 22, 0.26);
}

.fpt-logout-link {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
}

.fpt-line-chart {
	position: absolute;
	inset: 16px 16px 28px;
	z-index: 2;
	width: calc(100% - 32px);
	height: calc(100% - 44px);
	color: #153f91;
	pointer-events: none;
}

.fpt-mockup-chart span,
.fpt-preview-chart span {
	z-index: 1;
	opacity: 0.78;
}

.fpt-donut {
	display: grid;
	place-items: center;
	min-height: 148px;
	background: conic-gradient(#2f6fed 0 42%, #ff8a00 42% 68%, #16a34a 68% 84%, #dbe3ef 84% 100%);
	box-shadow: inset 0 0 0 18px #fff, 0 12px 28px rgba(47, 111, 237, 0.12);
}

.fpt-donut::before {
	content: "";
	width: 58px;
	height: 58px;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 0 0 1px #e6edf7;
}

.fpt-donut::after {
	content: "Dağılım";
}

.fpt-donut-legend {
	display: grid;
	gap: 7px;
	padding: 11px;
	border: 1px solid #e6edf7;
	border-radius: 8px;
	background: #fff;
}

.fpt-donut-legend span {
	display: flex;
	align-items: center;
	gap: 7px;
	color: #526273;
	font-size: 12px;
	font-weight: 800;
}

.fpt-donut-legend i {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #2f6fed;
}

.fpt-donut-legend span:nth-child(2) i {
	background: #ff8a00;
}

.fpt-donut-legend span:nth-child(3) i {
	background: #16a34a;
}

.fpt-mockup-bars {
	gap: 12px;
	padding: 12px;
	border: 1px solid #e6edf7;
	border-radius: 8px;
	background: #fff;
}

.fpt-mockup-bars span {
	position: relative;
	height: 26px;
	background: #edf3fb;
}

.fpt-mockup-bars em {
	position: absolute;
	z-index: 2;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	color: #526273;
	font-size: 12px;
	font-style: normal;
	font-weight: 900;
}

.fpt-mockup-bars i {
	opacity: 0.34;
}

.fpt-preview-chart {
	position: relative;
	overflow: hidden;
}

.fpt-preview-insight {
	display: flex;
	align-items: center;
	gap: 9px;
	margin-top: 14px;
	padding: 12px;
	border-radius: 8px;
	background: rgba(22, 163, 74, 0.1);
	color: #116c33;
	font-size: 13px;
	font-weight: 900;
}

.fpt-section-blue .fpt-split::after {
	display: none;
	content: none;
}

.fpt-panel-preview {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	min-height: 360px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.72);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 54px rgba(8, 24, 56, 0.24);
}

.fpt-panel-preview-sidebar {
	display: grid;
	align-content: start;
	gap: 13px;
	padding: 22px 16px;
	background: #153f91;
}

.fpt-panel-preview-sidebar span {
	height: 11px;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.7);
}

.fpt-panel-preview-sidebar span:first-child {
	width: 28px;
	height: 28px;
	background: #fff;
}

.fpt-panel-preview-main {
	display: grid;
	gap: 14px;
	padding: 18px;
	background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.fpt-panel-preview-top {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}

.fpt-panel-preview-top div,
.fpt-panel-trend,
.fpt-panel-preview-side,
.fpt-panel-preview-alert {
	border: 1px solid #e6edf7;
	border-radius: 8px;
	background: #fff;
}

.fpt-panel-preview-top div {
	padding: 12px;
}

.fpt-panel-preview-top span {
	display: block;
	margin-bottom: 4px;
	color: #64748b;
	font-size: 12px;
	font-weight: 800;
}

.fpt-panel-preview-top strong {
	color: #1f2d3d;
	font-size: 17px;
	font-weight: 900;
}

.fpt-panel-preview-body {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(130px, 0.75fr);
	gap: 12px;
}

.fpt-panel-trend {
	display: grid;
	place-items: center;
	min-height: 168px;
	padding: 12px;
	color: #2f6fed;
	background:
		repeating-linear-gradient(to bottom, rgba(47, 111, 237, 0.1) 0 1px, transparent 1px 32px),
		#fff;
}

.fpt-panel-preview-side {
	display: grid;
	gap: 12px;
	padding: 12px;
}

.fpt-panel-preview-side .fpt-donut {
	min-height: 112px;
}

.fpt-panel-progress {
	display: grid;
	gap: 8px;
}

.fpt-panel-progress span {
	height: 9px;
	overflow: hidden;
	border-radius: 8px;
	background: #edf3fb;
}

.fpt-panel-progress i {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #ff8a00 0%, #2f6fed 100%);
}

.fpt-panel-preview-alert {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 12px;
	color: #173f87;
	font-size: 13px;
	font-weight: 900;
}

.fpt-tool-card {
	gap: 0;
	box-shadow: 0 14px 32px rgba(31, 45, 61, 0.09);
}

.fpt-tool-icon {
	width: 54px;
	height: 54px;
}

.fpt-card-link {
	box-shadow: inset 0 0 0 1px rgba(47, 111, 237, 0.08);
}

.single-post .fpt-article {
	max-width: none;
}

.single-post .fpt-article-header h1 {
	max-width: 820px;
	font-size: clamp(28px, 3.2vw, 44px);
	line-height: 1.12;
}

.single-post .fpt-article-header p:not(.fpt-kicker) {
	max-width: 760px;
	font-size: 18px;
	line-height: 1.65;
}

.entry-content {
	color: #435366;
	font-size: 17px;
	line-height: 1.78;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-top: 34px;
	margin-bottom: 14px;
	line-height: 1.2;
}

.entry-content h2 {
	font-size: clamp(24px, 2.3vw, 32px);
}

.entry-content h3 {
	font-size: clamp(21px, 1.9vw, 26px);
}

.entry-content h4 {
	font-size: 20px;
}

.fpt-article-image,
.fpt-article-placeholder {
	aspect-ratio: 16 / 8;
	object-fit: cover;
	border: 1px solid #e6edf7;
	box-shadow: 0 18px 36px rgba(31, 45, 61, 0.08);
}

.fpt-article-placeholder {
	display: grid;
	place-items: center;
	gap: 12px;
	margin-bottom: 28px;
	border-radius: 8px;
	background:
		radial-gradient(circle at 74% 20%, rgba(255, 138, 0, 0.14), transparent 30%),
		linear-gradient(135deg, #eaf2ff 0%, #ffffff 100%);
	color: #1d4fae;
	font-size: 15px;
	font-weight: 900;
}

.fpt-article-placeholder .fpt-icon {
	width: 52px;
	height: 52px;
	padding: 12px;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 12px 26px rgba(47, 111, 237, 0.14);
}

.fpt-sidebar {
	position: sticky;
	top: 92px;
	display: grid;
	gap: 18px;
}

.fpt-sidebar .widget,
.fpt-widget {
	margin-bottom: 0;
	padding: 20px;
	box-shadow: 0 14px 30px rgba(31, 45, 61, 0.08);
}

.widget-title {
	margin-bottom: 14px;
	font-size: 18px;
}

.fpt-widget-search .search-form {
	display: grid;
	gap: 10px;
}

.fpt-widget-search .search-field {
	width: 100%;
	min-height: 44px;
	padding: 0 13px;
	border: 1px solid #dbe3ef;
	border-radius: 8px;
	background: #f8fbff;
	color: #1f2d3d;
}

.fpt-widget-search .search-submit {
	min-height: 42px;
	border: 0;
	border-radius: 8px;
	background: linear-gradient(135deg, #2f6fed 0%, #1d4fae 100%);
	color: #fff;
	font-weight: 900;
	cursor: pointer;
}

.fpt-sidebar-list {
	display: grid;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.fpt-sidebar-list li {
	display: grid;
	gap: 3px;
	padding-bottom: 12px;
	border-bottom: 1px solid #edf2f7;
}

.fpt-sidebar-list li:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.fpt-sidebar-list a {
	color: #1f2d3d;
	font-weight: 900;
	line-height: 1.35;
}

.fpt-sidebar-list a:hover {
	color: #2f6fed;
}

.fpt-sidebar-list span,
.fpt-sidebar-empty {
	color: #64748b;
	font-size: 13px;
	font-weight: 700;
}

@media (max-width: 960px) {
	.fpt-panel-preview {
		min-height: 320px;
	}

	.fpt-sidebar {
		position: static;
	}
}

@media (max-width: 720px) {
	.fpt-header-actions .fpt-login-link {
		display: inline-flex;
	}

	.fpt-panel-preview {
		grid-template-columns: 52px minmax(0, 1fr);
	}

	.fpt-panel-preview-top,
	.fpt-panel-preview-body {
		grid-template-columns: 1fr;
	}

	.single-post .fpt-article-header p:not(.fpt-kicker) {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.fpt-site-header .fpt-brand-mark {
		width: 32px;
		height: 32px;
	}

	.fpt-site-header .fpt-brand-mark svg {
		width: 22px;
		height: 22px;
	}

	.fpt-site-header .fpt-brand-text {
		font-size: 14px;
	}

	.fpt-header-actions {
		gap: 6px;
	}

	.fpt-site-header .fpt-brand.has-custom-logo {
		max-width: 176px;
	}

	.fpt-site-header .fpt-brand-logo {
		max-width: 176px;
		max-height: 40px;
	}

	.fpt-site-footer .fpt-brand-logo {
		max-width: 210px;
		max-height: 64px;
	}

	.fpt-header-actions .fpt-btn,
	.fpt-header-actions .fpt-login-link {
		display: inline-flex;
		width: auto;
		min-height: 34px;
		padding: 0 9px;
		font-size: 12px;
	}

	.fpt-panel-preview {
		grid-template-columns: 1fr;
		min-height: auto;
	}

	.fpt-panel-preview-sidebar {
		grid-template-columns: repeat(4, 1fr);
		padding: 12px;
	}

	.fpt-panel-preview-sidebar span:first-child {
		width: auto;
		height: 11px;
	}

	.fpt-panel-preview-main {
		padding: 14px;
	}

	.fpt-article-image,
	.fpt-article-placeholder {
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 360px) {
	.fpt-site-header .fpt-brand-text {
		display: none;
	}
}

/* Compact homepage dashboard previews */
.fpt-hero-media {
	padding: 10px;
}

.fpt-finance-mockup {
	gap: 10px;
	min-height: 0;
	padding: 14px;
}

.fpt-mockup-topbar {
	font-size: 12px;
}

.fpt-mockup-topbar span {
	width: 8px;
	height: 8px;
}

.fpt-mockup-summary {
	gap: 9px;
}

.fpt-mockup-summary div {
	padding: 10px;
}

.fpt-mockup-summary span,
.fpt-preview-stats span,
.fpt-preview-list div span {
	font-size: 11px;
}

.fpt-mockup-summary strong,
.fpt-preview-stats strong,
.fpt-preview-list div strong {
	font-size: 16px;
}

.fpt-mockup-body {
	grid-template-columns: minmax(0, 1.48fr) minmax(128px, 0.72fr);
	gap: 10px;
}

.fpt-mockup-chart {
	gap: 8px;
	min-height: 154px;
	padding: 12px;
}

.fpt-chart-grid {
	inset: 12px;
	background: repeating-linear-gradient(to bottom, rgba(47, 111, 237, 0.1) 0 1px, transparent 1px 26px);
}

.fpt-line-chart {
	inset: 11px 12px 18px;
	width: calc(100% - 24px);
	height: calc(100% - 29px);
}

.fpt-line-chart path:first-child {
	stroke-width: 4;
}

.fpt-mockup-chart span {
	border-radius: 7px 7px 3px 3px;
	box-shadow: 0 8px 14px rgba(47, 111, 237, 0.14);
}

.fpt-mockup-side {
	align-content: start;
	gap: 8px;
}

.fpt-mockup-side .fpt-donut,
.fpt-panel-preview-side .fpt-donut {
	width: min(100%, 104px);
	min-height: 0;
	aspect-ratio: 1;
	margin: 0 auto;
	box-shadow: inset 0 0 0 15px #fff, 0 10px 22px rgba(47, 111, 237, 0.1);
}

.fpt-mockup-side .fpt-donut::before,
.fpt-panel-preview-side .fpt-donut::before {
	width: 42px;
	height: 42px;
}

.fpt-donut::after {
	font-size: 11px;
}

.fpt-donut-legend {
	grid-template-columns: 1fr;
	gap: 5px;
	padding: 8px;
}

.fpt-donut-legend span {
	font-size: 11px;
}

.fpt-mini-alert {
	gap: 7px;
	padding: 8px;
	font-size: 11px;
	line-height: 1.35;
}

.fpt-mini-alert .fpt-icon {
	width: 16px;
	height: 16px;
}

.fpt-mockup-bars {
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 8px;
	padding: 8px;
}

.fpt-mockup-bars span {
	height: 22px;
}

.fpt-mockup-bars em {
	left: 8px;
	font-size: 10px;
}

.fpt-preview-chart {
	height: 150px;
	padding: 12px;
	gap: 9px;
}

.fpt-preview-insight {
	margin-top: 10px;
	padding: 9px 10px;
	font-size: 12px;
}

.fpt-panel-preview {
	grid-template-columns: 58px minmax(0, 1fr);
	min-height: 292px;
}

.fpt-panel-preview-sidebar {
	gap: 10px;
	padding: 16px 12px;
}

.fpt-panel-preview-sidebar span:first-child {
	width: 24px;
	height: 24px;
}

.fpt-panel-preview-main {
	gap: 10px;
	padding: 13px;
}

.fpt-panel-preview-top {
	gap: 8px;
}

.fpt-panel-preview-top div {
	padding: 9px;
}

.fpt-panel-preview-top span {
	font-size: 11px;
}

.fpt-panel-preview-top strong {
	font-size: 15px;
}

.fpt-panel-preview-body {
	grid-template-columns: minmax(0, 1.48fr) minmax(112px, 0.68fr);
	gap: 9px;
}

.fpt-panel-trend {
	min-height: 124px;
	padding: 9px;
	background:
		repeating-linear-gradient(to bottom, rgba(47, 111, 237, 0.09) 0 1px, transparent 1px 24px),
		#fff;
}

.fpt-panel-trend svg path:first-child {
	stroke-width: 5;
}

.fpt-panel-preview-side {
	align-content: start;
	gap: 9px;
	padding: 9px;
}

.fpt-panel-preview-side .fpt-donut {
	width: min(100%, 86px);
}

.fpt-panel-preview-side .fpt-donut::before {
	width: 34px;
	height: 34px;
}

.fpt-panel-progress {
	gap: 6px;
}

.fpt-panel-progress span {
	height: 7px;
}

.fpt-panel-preview-alert {
	padding: 9px 10px;
	font-size: 12px;
	line-height: 1.35;
}

@media (max-width: 960px) {
	.fpt-panel-preview {
		min-height: 280px;
	}

	.fpt-mockup-chart {
		min-height: 144px;
	}
}

@media (max-width: 720px) {
	.fpt-mockup-summary,
	.fpt-panel-preview-top {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.fpt-mockup-summary div,
	.fpt-panel-preview-top div {
		padding: 8px;
	}

	.fpt-mockup-body,
	.fpt-panel-preview-body {
		grid-template-columns: 1fr;
	}

	.fpt-mockup-side {
		grid-template-columns: 96px minmax(0, 1fr);
		align-items: center;
	}

	.fpt-donut-legend {
		display: none;
	}

	.fpt-mockup-bars {
		grid-template-columns: 1fr;
	}

	.fpt-panel-preview {
		grid-template-columns: 48px minmax(0, 1fr);
	}

	.fpt-panel-preview-side {
		grid-template-columns: 92px minmax(0, 1fr);
		align-items: center;
	}
}

@media (max-width: 480px) {
	.fpt-hero-media {
		padding: 8px;
	}

	.fpt-finance-mockup,
	.fpt-product-preview {
		gap: 8px;
		padding: 10px;
	}

	.fpt-mockup-summary strong,
	.fpt-panel-preview-top strong {
		font-size: 13px;
	}

	.fpt-mockup-summary span,
	.fpt-panel-preview-top span {
		font-size: 10px;
	}

	.fpt-mockup-chart {
		min-height: 122px;
	}

	.fpt-preview-chart {
		height: 126px;
	}

	.fpt-mockup-side {
		grid-template-columns: 82px minmax(0, 1fr);
	}

	.fpt-mockup-side .fpt-donut {
		width: 78px;
	}

	.fpt-mini-alert {
		min-height: 54px;
	}

	.fpt-mockup-bars span {
		height: 20px;
	}

	.fpt-panel-preview {
		grid-template-columns: 1fr;
		min-height: 0;
	}

	.fpt-panel-preview-sidebar {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
		padding: 9px;
	}

	.fpt-panel-preview-main {
		padding: 10px;
	}

	.fpt-panel-trend {
		min-height: 110px;
	}

	.fpt-panel-preview-side {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.fpt-panel-preview-alert {
		align-items: flex-start;
	}
}

@media (max-width: 360px) {
	.fpt-mockup-summary,
	.fpt-panel-preview-top {
		gap: 5px;
	}

	.fpt-mockup-summary div,
	.fpt-panel-preview-top div {
		padding: 7px 6px;
	}
}

/* Tighter dashboard mockup balance */
.fpt-finance-mockup {
	gap: 8px;
	padding: 12px;
}

.fpt-mockup-summary div {
	padding: 8px;
}

.fpt-mockup-summary strong {
	font-size: 15px;
}

.fpt-mockup-chart {
	min-height: 138px;
	padding: 10px;
}

.fpt-chart-grid {
	inset: 10px;
	background: repeating-linear-gradient(to bottom, rgba(47, 111, 237, 0.08) 0 1px, transparent 1px 22px);
}

.fpt-mockup-side {
	grid-template-columns: 86px minmax(0, 1fr);
	align-items: center;
	gap: 7px 8px;
}

.fpt-mockup-side .fpt-donut {
	width: 84px;
}

.fpt-mockup-side .fpt-donut::before {
	width: 34px;
	height: 34px;
}

.fpt-mockup-side .fpt-donut::after {
	font-size: 10px;
}

.fpt-donut-legend {
	gap: 4px;
	padding: 7px;
}

.fpt-donut-legend span {
	gap: 5px;
	font-size: 10px;
}

.fpt-donut-legend i {
	width: 7px;
	height: 7px;
}

.fpt-mini-alert {
	grid-column: 1 / -1;
	min-height: 34px;
	padding: 7px 8px;
}

.fpt-mockup-bars {
	gap: 6px;
	padding: 7px;
}

.fpt-mockup-bars span {
	height: 18px;
}

.fpt-mockup-bars em {
	font-size: 9px;
}

.fpt-panel-preview {
	min-height: 268px;
}

.fpt-panel-preview-main {
	gap: 8px;
	padding: 11px;
}

.fpt-panel-preview-top div {
	padding: 7px 8px;
}

.fpt-panel-preview-top strong {
	font-size: 14px;
}

.fpt-panel-trend {
	min-height: 106px;
}

.fpt-panel-preview-side {
	gap: 7px;
	padding: 7px;
}

.fpt-panel-preview-side .fpt-donut {
	width: min(100%, 76px);
}

.fpt-panel-preview-side .fpt-donut::before {
	width: 30px;
	height: 30px;
}

.fpt-panel-preview-alert {
	padding: 8px 9px;
	font-size: 11px;
}

@media (max-width: 960px) {
	.fpt-mockup-chart {
		min-height: 128px;
	}

	.fpt-panel-preview {
		min-height: 252px;
	}

	.fpt-panel-trend {
		min-height: 96px;
	}
}

@media (max-width: 720px) {
	.fpt-mockup-side {
		grid-template-columns: 78px minmax(0, 1fr);
	}

	.fpt-mockup-side .fpt-donut {
		width: 76px;
	}

	.fpt-mockup-chart {
		min-height: 110px;
	}

	.fpt-panel-trend {
		min-height: 88px;
	}
}

@media (max-width: 480px) {
	.fpt-finance-mockup {
		padding: 8px;
	}

	.fpt-mockup-summary {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 5px;
	}

	.fpt-mockup-summary div,
	.fpt-panel-preview-top div {
		padding: 6px 5px;
	}

	.fpt-mockup-summary span {
		font-size: 9px;
	}

	.fpt-mockup-summary strong {
		font-size: 12px;
	}

	.fpt-mockup-chart {
		min-height: 96px;
		padding: 8px;
	}

	.fpt-chart-grid {
		inset: 8px;
	}

	.fpt-mockup-side {
		grid-template-columns: 70px minmax(0, 1fr);
	}

	.fpt-mockup-side .fpt-donut {
		width: 68px;
	}

	.fpt-mini-alert {
		min-height: 32px;
	}

	.fpt-mockup-bars {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 5px;
		padding: 6px;
	}

	.fpt-mockup-bars span {
		height: 30px;
	}

	.fpt-mockup-bars em {
		left: 6px;
		font-size: 8px;
	}

	.fpt-panel-preview-main {
		gap: 7px;
		padding: 8px;
	}

	.fpt-panel-preview-sidebar {
		padding: 7px;
	}

	.fpt-panel-trend {
		min-height: 78px;
	}

	.fpt-panel-preview-body {
		grid-template-columns: minmax(0, 1.25fr) minmax(86px, 0.65fr);
		gap: 7px;
	}

	.fpt-panel-preview-side {
		grid-template-columns: 1fr;
		padding: 7px;
	}

	.fpt-panel-preview-side .fpt-donut {
		width: 58px;
	}

	.fpt-panel-progress span {
		height: 6px;
	}
}

@media (max-width: 340px) {
	.fpt-mockup-summary {
		gap: 4px;
	}

	.fpt-mockup-summary div {
		padding: 5px 4px;
	}

	.fpt-mockup-summary span {
		font-size: 8px;
	}

	.fpt-mockup-summary strong {
		font-size: 11px;
	}

	.fpt-panel-preview-side {
		grid-template-columns: minmax(0, 1fr);
	}
}

/* Refined homepage donut charts */
.fpt-mockup-side .fpt-donut,
.fpt-panel-preview-side .fpt-donut {
	--fpt-donut-size: 84px;
	--fpt-donut-hole: 36px;
	position: relative;
	width: var(--fpt-donut-size);
	min-height: 0;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: hidden;
	background: conic-gradient(
		from -42deg,
		#2f6fed 0deg 148deg,
		#ffffff 148deg 154deg,
		#ff8a00 154deg 244deg,
		#ffffff 244deg 250deg,
		#16a34a 250deg 310deg,
		#ffffff 310deg 316deg,
		#dbe3ef 316deg 360deg
	);
	box-shadow: inset 0 0 0 1px rgba(31, 45, 61, 0.06), 0 12px 24px rgba(47, 111, 237, 0.14);
}

.fpt-panel-preview-side .fpt-donut {
	--fpt-donut-size: 76px;
	--fpt-donut-hole: 32px;
}

.fpt-mockup-side .fpt-donut::before,
.fpt-panel-preview-side .fpt-donut::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: var(--fpt-donut-hole);
	height: var(--fpt-donut-hole);
	border-radius: 50%;
	background: #ffffff;
	box-shadow: 0 0 0 1px rgba(226, 232, 240, 0.95), 0 6px 14px rgba(31, 45, 61, 0.08);
	transform: translate(-50%, -50%);
}

.fpt-mockup-side .fpt-donut::after,
.fpt-panel-preview-side .fpt-donut::after {
	content: "42%\A Da\011F\0131l\0131m";
	z-index: 2;
	width: var(--fpt-donut-hole);
	color: #1f2d3d;
	font-size: 9px;
	font-weight: 900;
	line-height: 1.08;
	text-align: center;
	white-space: pre;
}

@media (max-width: 720px) {
	.fpt-mockup-side .fpt-donut {
		--fpt-donut-size: 76px;
		--fpt-donut-hole: 32px;
	}
}

@media (max-width: 480px) {
	.fpt-mockup-side .fpt-donut {
		--fpt-donut-size: 68px;
		--fpt-donut-hole: 28px;
	}

	.fpt-panel-preview-side .fpt-donut {
		--fpt-donut-size: 58px;
		--fpt-donut-hole: 24px;
	}

	.fpt-mockup-side .fpt-donut::after,
	.fpt-panel-preview-side .fpt-donut::after {
		font-size: 8px;
	}
}
