/* SECTION spacing mobile-first */

.section {
	padding: 60px 0;
}

/* Buttons mobile */

.hero__actions {
	flex-direction: column;
	align-items: stretch;
}

.hero__actions .btn {
	width: 100%;
}

/* Partners */

.partners {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	opacity: 0.7;
	font-size: var(--font-size-sm);
}

/* Stats */

.stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-16);
}

.stats div {
	text-align: center;
}

.stats h2 {
	font-size: var(--font-size-2xl);
}

/* HOW IT WORKS */

.section--alt {
	background: var(--color-surface-alt);
}

/* STEP */

.how__step {
	text-align: center;
	padding: 32px 24px;

	border-radius: var(--radius-lg);
	background: var(--color-surface);

	box-shadow: var(--shadow-sm);

	transition: var(--transition-base);
}

.how__step:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

/* NUMBER */

.how__number {
	width: 56px;
	height: 56px;

	margin: 0 auto 16px;

	border-radius: var(--radius-round);

	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: var(--font-weight-bold);
	font-size: var(--font-size-lg);

	color: var(--color-white);

	background: linear-gradient(135deg, #175cd3, #0ea5e9);

	box-shadow: 0 8px 20px rgba(23, 92, 211, 0.3);
}

/* TEXT */

.how__step h3 {
	margin-bottom: 8px;
}

.how__step p {
	color: var(--color-text-muted);
}
/* PRICING */

.pricing {
	align-items: stretch;
}

/* CARD */

.pricing__card {
	position: relative;

	padding: 32px 24px;

	border-radius: var(--radius-xl);
	background: var(--color-surface);

	border: 1px solid var(--color-border);

	box-shadow: var(--shadow-sm);

	display: flex;
	flex-direction: column;
	gap: 16px;

	transition: var(--transition-base);
}

.pricing__card:hover {
	transform: translateY(-8px);
	box-shadow: var(--shadow-md);
}

/* FEATURED */

.pricing__card--featured {
	border: 2px solid var(--color-primary);
	box-shadow: 0 20px 50px rgba(23, 92, 211, 0.15);

	transform: scale(1.05);
}

/* BADGE */

.pricing__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);

	padding: 4px 12px;

	font-size: var(--font-size-xs);
	font-weight: var(--font-weight-semibold);

	color: var(--color-white);

	background: var(--color-primary);

	border-radius: var(--radius-round);
}

/* PRICE */

.pricing__price {
	font-size: var(--font-size-3xl);
	font-weight: var(--font-weight-bold);

	margin-bottom: 8px;
}

/* FEATURES */

.pricing__features {
	display: flex;
	flex-direction: column;
	gap: 8px;

	margin-bottom: 16px;
}

.pricing__features li {
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
}

/* BUTTON ALIGN */

.pricing__card .btn {
	margin-top: auto;
}
/* DEMO */

.demo {
	background: radial-gradient(circle at top, rgba(23, 92, 211, 0.08), transparent 45%), var(--color-background);
}

.demo__intro {
	max-width: 760px;
	margin: 0 auto 48px;
}

.demo__lead {
	font-size: var(--font-size-lg);
	color: var(--color-text-muted);
}

.demo__mockup {
	overflow: hidden;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2xl);
	background: var(--color-surface);
	box-shadow: var(--shadow-lg);
}

.demo__topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 16px 20px;
	border-bottom: 1px solid var(--color-border);
	background: #f8fafc;
}

.demo__dots {
	display: flex;
	align-items: center;
	gap: 8px;
}

.demo__dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #cbd5e1;
}

.demo__title {
	font-size: var(--font-size-sm);
	font-weight: var(--font-weight-semibold);
	color: var(--color-text-muted);
}

.demo__body {
	display: grid;
	grid-template-columns: 240px 1fr;
	min-height: 620px;
}

.demo__sidebar {
	padding: 24px;
	border-right: 1px solid var(--color-border);
	background: #0f172a;
	color: white;
}

.demo__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	margin-bottom: 32px;
	border-radius: 16px;
	font-weight: 700;
	background: linear-gradient(135deg, #175cd3, #0ea5e9);
	box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}

.demo__menu {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.demo__menu a {
	padding: 8px 10px;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.8);
	transition: var(--transition-fast);
}

.demo__menu a:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

.demo__content {
	padding: 24px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.demo__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.demo-card {
	padding: 20px;
	border-radius: 16px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.demo-card span {
	display: block;
	margin-bottom: 8px;
	font-size: var(--font-size-sm);
	color: var(--color-text-soft);
}

.demo-card strong {
	font-size: var(--font-size-2xl);
	color: var(--color-text);
}

.demo__panels {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 16px;
}

.demo-panel {
	padding: 24px;
	border-radius: 20px;
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.demo-panel--large {
	grid-row: span 2;
}

.demo-panel__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.demo-panel__header h3 {
	font-size: var(--font-size-lg);
}

.demo-panel__header span {
	font-size: var(--font-size-sm);
	color: var(--color-text-soft);
}

.demo-table {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.demo-table__row {
	display: grid;
	grid-template-columns: 40px 1fr 80px 100px;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 14px;
	background: #f8fafc;
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
}

.demo-table__row--head {
	background: transparent;
	padding: 0 4px 8px;
	color: var(--color-text-soft);
	font-weight: var(--font-weight-semibold);
}

.demo-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.demo-list__item {
	padding: 14px 16px;
	border-radius: 14px;
	background: #f8fafc;
	border: 1px solid var(--color-border);
}

.demo-list__item strong {
	display: block;
	margin-bottom: 4px;
	color: var(--color-text);
}

.demo-list__item span {
	font-size: var(--font-size-sm);
	color: var(--color-text-soft);
}

.demo-form {
	display: flex;
	gap: 10px;
}

.demo-form span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 999px;
	font-weight: 700;
	color: white;
}

.demo-form .win {
	background: #16a34a;
}

.demo-form .loss {
	background: #dc2626;
}

.demo-brand {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.demo-brand__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 96px;
	height: 96px;
	border-radius: 20px;
	font-weight: 700;
	color: var(--color-primary);
	background: var(--color-primary-soft);
	border: 1px dashed var(--color-primary);
}

.demo-brand p {
	margin: 0;
}

@media (max-width: 1024px) {
	.demo__body {
		grid-template-columns: 1fr;
	}

	.demo__sidebar {
		border-right: none;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.demo__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.demo__panels {
		grid-template-columns: 1fr;
	}

	.demo-panel--large {
		grid-row: auto;
	}
}

@media (max-width: 640px) {
	.demo__topbar {
		padding: 14px 16px;
	}

	.demo__content {
		padding: 12px;
	}

	.demo__stats {
		grid-template-columns: 1fr;
	}

	.demo-table__row {
		grid-template-columns: 32px 1fr 60px 70px;
		font-size: 12px;
		gap: 8px;
		padding: 12px;
	}

	.demo-form {
		flex-wrap: wrap;
	}
}
/* TESTIMONIALS */

.testimonials {
	background: var(--color-surface-alt);
}

/* CARD */

.testimonial {
	padding: 28px;
	border-radius: var(--radius-xl);

	background: var(--color-surface);
	border: 1px solid var(--color-border);

	box-shadow: var(--shadow-sm);

	display: flex;
	flex-direction: column;
	gap: 20px;

	transition: var(--transition-base);
}

.testimonial:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
}

/* TEXT */

.testimonial__text {
	font-size: var(--font-size-md);
	line-height: 1.6;
	color: var(--color-text);
}

/* AUTHOR */

.testimonial__author {
	display: flex;
	align-items: center;
	gap: 10px;
}

/* AVATAR */

.testimonial__avatar {
	width: 44px;
	height: 44px;

	border-radius: 50%;

	display: flex;
	align-items: center;
	justify-content: center;

	font-weight: var(--font-weight-bold);

	color: white;
	background: linear-gradient(135deg, #175cd3, #0ea5e9);
}

/* NAME */

.testimonial__author strong {
	display: block;
	font-size: var(--font-size-sm);
}

.testimonial__author span {
	font-size: var(--font-size-xs);
	color: var(--color-text-soft);
}
/* FINAL CTA */

.cta-final {
	padding: 120px 0;

	background: linear-gradient(135deg, #0f172a, #175cd3, #0ea5e9);
	color: white;

	text-align: center;
}

.cta-final__title {
	font-size: var(--font-size-4xl);
	margin-bottom: 16px;
}

.cta-final__subtitle {
	font-size: var(--font-size-lg);
	opacity: 0.9;
	margin-bottom: 32px;
}

.cta-final__actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}
/* 🔥 FIX CTA TEXT VISIBILITY */

.cta-final__title {
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.cta-final__subtitle {
	font-size: var(--font-size-lg);
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 32px;

	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.cta-final__subtitle {
	opacity: 1 !important;
}

/* FEATURES PRO - TennisFinalsPro SaaS section */

.features-pro {
	position: relative;
	overflow: hidden;
	padding: 86px 0;
	background:
		radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.12), transparent 32rem),
		radial-gradient(circle at 85% 15%, rgba(14, 165, 233, 0.1), transparent 28rem),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.features-pro::before {
	content: '';
	position: absolute;
	inset: 34px auto auto 50%;
	width: min(720px, 86vw);
	height: 1px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
}

.features-pro__head {
	max-width: 760px;
	margin: 0 auto 34px;
	text-align: center;
}

.features-pro__eyebrow {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 12px;
	border: 1px solid rgba(37, 99, 235, 0.16);
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	color: #2563eb;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.features-pro__head h2 {
	margin: 14px 0 12px;
	color: #0f172a;
	font-size: clamp(34px, 6vw, 56px);
	line-height: 0.98;
	letter-spacing: -0.06em;
}

.features-pro__head p {
	max-width: 680px;
	margin: 0 auto;
	color: #64748b;
	font-size: 14px;
	line-height: 1.65;
}

.features-pro__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
}

.feature-pro-card {
	position: relative;
	isolation: isolate;
	min-height: 248px;
	padding: 20px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 24px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
	box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07);
	overflow: hidden;
	transition:
		transform 0.22s ease,
		box-shadow 0.22s ease,
		border-color 0.22s ease;
}

.feature-pro-card::after {
	content: '';
	position: absolute;
	inset: auto -35% -55% auto;
	width: 220px;
	height: 220px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.08);
	z-index: -1;
}

.feature-pro-card:hover {
	transform: translateY(-4px);
	border-color: rgba(37, 99, 235, 0.22);
	box-shadow: 0 24px 58px rgba(15, 23, 42, 0.11);
}

.feature-pro-card--featured {
	background:
		radial-gradient(circle at top right, rgba(96, 165, 250, 0.3), transparent 18rem),
		linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.16);
}

.feature-pro-card--featured::after {
	background: rgba(255, 255, 255, 0.12);
}

.feature-pro-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 22px;
}

.feature-pro-card__top span {
	display: inline-flex;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(37, 99, 235, 0.09);
	color: #2563eb;
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.feature-pro-card--featured .feature-pro-card__top span {
	background: rgba(255, 255, 255, 0.16);
	color: #dbeafe;
}

.feature-pro-card__icon {
	display: grid;
	place-items: center;
	width: 46px;
	height: 46px;
	border-radius: 16px;
	background: #eef5ff;
	color: #2563eb;
	font-size: 22px;
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.09);
}

.feature-pro-card--featured .feature-pro-card__icon {
	background: rgba(255, 255, 255, 0.16);
	color: #ffffff;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.feature-pro-card h3 {
	margin: 0 0 9px;
	color: #0f172a;
	font-size: 22px;
	line-height: 1.08;
	letter-spacing: -0.04em;
}

.feature-pro-card--featured h3 {
	color: #ffffff;
}

.feature-pro-card p {
	margin: 0 0 18px;
	color: #64748b;
	font-size: 13px;
	line-height: 1.45;
}

.feature-pro-card--featured p {
	color: #dbeafe;
}

.feature-pro-card ul {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-pro-card li {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 9px;
	border-radius: 999px;
	background: #f1f5f9;
	color: #475569;
	font-size: 11px;
	font-weight: 800;
}

.feature-pro-card li::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 999px;
	background: #2563eb;
}

.feature-pro-card--featured li {
	background: rgba(255, 255, 255, 0.13);
	color: #eff6ff;
}

.feature-pro-card--featured li::before {
	background: #93c5fd;
}

@media (min-width: 760px) {
	.features-pro {
		padding: 112px 0;
	}

	.features-pro__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.feature-pro-card {
		padding: 24px;
		min-height: 270px;
	}
}

@media (min-width: 1080px) {
	.features-pro__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.feature-pro-card--featured {
		grid-row: span 2;
		min-height: 100%;
	}

	.feature-pro-card--featured h3 {
		font-size: 30px;
	}

	.feature-pro-card--featured p {
		font-size: 15px;
	}
}

.tfp-ranking-preview {
	display: grid;
	gap: 6px;
}

.tfp-ranking-preview div {
	display: grid;
	grid-template-columns: 31px minmax(0, 1fr) auto;
	align-items: center;
	gap: 8px;
	padding: 8px;
	border-radius: 12px;
	background: #f8fafc;
}

.tfp-ranking-preview b {
	display: grid;
	place-items: center;
	width: 26px;
	height: 26px;
	border-radius: 9px;
	background: #eaf2ff;
	color: #2563eb;
	font-size: 10px;
}

.tfp-ranking-preview span {
	color: #0f172a;
	font-size: 12px;
	font-weight: 850;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.tfp-ranking-preview strong {
	color: #2563eb;
	font-size: 12px;
	font-weight: 950;
}

.tfp-league-preview {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;
}

.tfp-league-preview div {
	padding: 9px 6px;
	border-radius: 12px;
	background: #f8fafc;
	text-align: center;
}

.tfp-league-preview strong {
	display: block;
	color: #0f172a;
	font-size: 19px;
	line-height: 1;
	letter-spacing: -0.06em;
}

.tfp-league-preview span {
	display: block;
	margin-top: 4px;
	color: #64748b;
	font-size: 9px;
	font-weight: 850;
}

.tfp-form-preview {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
}

.tfp-form-preview span {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border-radius: 999px;
	font-size: 11px;
	font-weight: 950;
}

.tfp-form-preview .is-win {
	background: #dcfce7;
	color: #15803d;
}

.tfp-form-preview .is-loss {
	background: #ffe4e6;
	color: #be123c;
}

.tfp-score-preview {
	display: grid;
	gap: 6px;
}

.tfp-score-preview div {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 9px;
	padding: 8px;
	border-radius: 12px;
	background: #f8fafc;
}

.tfp-score-preview span {
	color: #0f172a;
	font-size: 12px;
	font-weight: 850;
}

.tfp-score-preview strong {
	color: #2563eb;
	font-size: 12px;
	font-weight: 950;
	white-space: nowrap;
}

/* CONTACT PRO - fixed premium section */

.contact-pro {
	position: relative;
	overflow: hidden;
	padding: 84px 0;
	background:
		radial-gradient(circle at 18% 10%, rgba(37, 99, 235, 0.1), transparent 30rem),
		radial-gradient(circle at 84% 88%, rgba(14, 165, 233, 0.12), transparent 32rem),
		linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.contact-pro__shell {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	align-items: stretch;
}

.contact-pro__content {
	padding: 24px;
	border-radius: 28px;
	color: #ffffff;
	background:
		radial-gradient(circle at 88% 10%, rgba(147, 197, 253, 0.28), transparent 18rem),
		linear-gradient(135deg, #0f172a 0%, #1d4ed8 100%);
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.16);
}

.contact-pro__eyebrow {
	display: inline-flex;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.14);
	color: #dbeafe;
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.contact-pro__content h2 {
	max-width: 620px;
	margin: 16px 0 12px;
	color: #ffffff;
	font-size: clamp(30px, 5vw, 48px);
	line-height: 1;
	letter-spacing: -0.055em;
}

.contact-pro__content p {
	max-width: 560px;
	margin: 0;
	color: #dbeafe;
	font-size: 15px;
	line-height: 1.62;
}

.contact-pro__items {
	display: grid;
	gap: 10px;
	margin-top: 16px;
}

.contact-pro__item {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 13px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.09);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.contact-pro__icon {
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.14);
	font-size: 18px;
}

.contact-pro__item strong {
	display: block;
	color: #ffffff;
	font-size: 14px;
	line-height: 1.2;
}

.contact-pro__item span {
	display: block;
	margin-top: 4px;
	color: #bfdbfe;
	font-size: 13px;
	line-height: 1.4;
}

.contact-pro__card {
	padding: 20px;
	border: 1px solid rgba(226, 232, 240, 0.95);
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 22px 60px rgba(15, 23, 42, 0.1);
}

.contact-pro__card-head {
	margin-bottom: 12px;
}

.contact-pro__card-head h3 {
	margin: 0 0 6px;
	color: #0f172a;
	font-size: 24px;
	line-height: 1.1;
	letter-spacing: -0.04em;
}

.contact-pro__card-head p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
}

.contact-pro__form {
	display: grid;
	gap: 14px;
}

.contact-pro__form .form-group {
	margin: 0;
}

.contact-pro__form .form-label {
	color: #0f172a;
	font-size: 13px;
	font-weight: 800;
}

.contact-pro__form .form-input {
	width: 100%;
	min-height: 48px;
	border-radius: 16px;
	border: 1px solid #dbe3ee;
	background: #f8fbff;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		background 0.2s ease;
}

.contact-pro__form textarea.form-input {
	min-height: 126px;
	resize: vertical;
}

.contact-pro__form .form-input:focus {
	border-color: rgba(37, 99, 235, 0.55);
	background: #ffffff;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
	outline: none;
}

.contact-pro__form .btn {
	min-height: 50px;
	border-radius: 999px;
	box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

@media (min-width: 900px) {
	.contact-pro {
		padding: 100px 0;
	}

	.contact-pro__shell {
		grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
		gap: 22px;
	}

	.contact-pro__content {
		padding: 38px;
	}

	.contact-pro__card {
		padding: 28px;
	}
}

@media (min-width: 1180px) {
	.contact-pro__items {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: none;
	}
}

/* PARTNERS PRO - premium logo marquee */

.partners-pro {
	position: relative;
	overflow: hidden;
	padding: 30px 0 34px;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border-top: 1px solid rgba(226, 232, 240, 0.9);
	border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.partners-pro__head {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 12px;
	text-align: center;
}

.partners-pro__head span {
	color: #0f172a;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.partners-pro__head p {
	margin: 0;
	color: #64748b;
	font-size: 13px;
	font-weight: 650;
}

.partners-pro__marquee {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 4px 0;
	mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
	-webkit-mask-image: linear-gradient(90deg, transparent 0, black 10%, black 90%, transparent 100%);
}

.partners-pro__marquee::before,
.partners-pro__marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 120px;
	z-index: 2;
	pointer-events: none;
}

.partners-pro__marquee::before {
	left: 0;
	background: linear-gradient(90deg, #fff, transparent);
}

.partners-pro__marquee::after {
	right: 0;
	background: linear-gradient(270deg, #fff, transparent);
}

.partners-pro__track {
	display: flex;
	align-items: center;
	width: max-content;
	gap: 24px;
	animation: partnersProScroll 34s linear infinite;
	will-change: transform;
}

.partners-pro__marquee:hover .partners-pro__track {
	animation-play-state: paused;
}

.partners-pro__group {
	display: flex;
	align-items: center;
	gap: 14px;
}

.partners-pro__separator {
	width: 72px;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.35), transparent);
}

.partners-pro__logo {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 152px;
	height: 48px;
	padding: 0 20px;
	border: 1px solid #e5eaf1;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.86);
	color: #94a3b8;
	box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
}

.partners-pro__logo--mark {
	min-width: 78px;
	color: #ffffff;
	background: linear-gradient(135deg, #0f172a, #2563eb);
	border-color: rgba(37, 99, 235, 0.45);
	box-shadow: 0 16px 36px rgba(37, 99, 235, 0.2);
}

@keyframes partnersProScroll {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-33.333%, 0, 0);
	}
}

@media (max-width: 720px) {
	.partners-pro {
		padding: 24px 0 28px;
	}

	.partners-pro__head {
		padding: 0 16px;
		margin-bottom: 14px;
	}

	.partners-pro__head p {
		font-size: 12px;
	}

	.partners-pro__track {
		gap: 16px;
		animation-duration: 28s;
	}

	.partners-pro__group {
		gap: 10px;
	}

	.partners-pro__separator {
		width: 44px;
	}

	.partners-pro__logo {
		min-width: 126px;
		height: 42px;
		padding: 0 15px;
		font-size: 10px;
	}

	.partners-pro__logo--mark {
		min-width: 64px;
	}

	.partners-pro__marquee::before,
	.partners-pro__marquee::after {
		width: 54px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.partners-pro__track {
		animation: none;
	}
}
.partners-pro__logo-img {
	height: 42px;
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
	opacity: 0.95;
	transition: all 0.3s ease;
}

.partners-pro__logo-img:hover {
	opacity: 1;
	transform: scale(1.05);
}
/* ACCESS MODAL - organizer permission */
body.modal-open {
	overflow: hidden;
}

.tfp-access-modal {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 15px;
}
.tfp-access-modal.is-open {
	display: flex;
}
.tfp-access-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(2, 6, 23, 0.68);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.tfp-access-modal__dialog {
	position: relative;
	width: min(100%, 560px);
	padding: 26px;
	border: 1px solid rgba(226, 232, 240, 0.8);
	border-radius: 26px;
	background: radial-gradient(circle at 90% 5%, rgba(37, 99, 235, 0.13), transparent 16rem), #ffffff;
	box-shadow: 0 30px 90px rgba(2, 6, 23, 0.34);
	animation: tfpModalIn 0.22s ease both;
}
@keyframes tfpModalIn {
	from {
		opacity: 0;
		transform: translateY(12px) scale(0.98);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}
.tfp-access-modal__close {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid #e5eaf1;
	border-radius: 999px;
	background: #fff;
	color: #64748b;
	cursor: pointer;
	font-size: 24px;
	line-height: 1;
}
.tfp-access-modal__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	margin-bottom: 14px;
	border-radius: 18px;
	background: linear-gradient(135deg, #0f172a, #2563eb);
	color: #fff;
	font-size: 24px;
	box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}
.tfp-access-modal__eyebrow {
	display: inline-flex;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eaf2ff;
	color: #2563eb;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.tfp-access-modal__dialog h2 {
	margin: 14px 0 10px;
	color: #0f172a;
	font-size: clamp(26px, 5vw, 38px);
	line-height: 1;
	letter-spacing: -0.055em;
}
.tfp-access-modal__dialog p {
	margin: 0;
	color: #64748b;
	font-size: 14px;
	line-height: 1.6;
}
.tfp-access-modal__steps {
	display: grid;
	grid-template-columns: 1fr;
	gap: 9px;
	margin: 18px 0;
}
.tfp-access-modal__steps div {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 11px;
	border: 1px solid #e5eaf1;
	border-radius: 16px;
	background: #f8fbff;
}
.tfp-access-modal__steps strong {
	display: grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: #2563eb;
	color: #fff;
	font-size: 12px;
}
.tfp-access-modal__steps span {
	color: #0f172a;
	font-size: 13px;
	font-weight: 850;
}
.tfp-access-modal__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 14px;
}
.tfp-access-modal__actions .btn {
	flex: 1 1 180px;
}
.tfp-access-modal__note {
	margin-top: 14px !important;
	font-size: 12px !important;
	color: #94a3b8 !important;
}

/* HERO LIVE DASHBOARD */
.tfp-live-dashboard {
	display: grid;
	grid-template-columns: 1fr;
	gap: 9px;
}
.tfp-live-card {
	padding: 12px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 17px;
	background: rgba(255, 255, 255, 0.95);
	box-shadow: 0 18px 36px rgba(15, 23, 42, 0.14);
}
.tfp-live-card--main {
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, 0.13), transparent 13rem), rgba(255, 255, 255, 0.97);
}
.tfp-live-card__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 10px;
}
.tfp-live-card__head span {
	color: #64748b;
	font-size: 9px;
	font-weight: 950;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.tfp-live-card__head strong {
	color: #0f172a;
	font-size: 11px;
	font-weight: 950;
	max-width: 170px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.tfp-live-score {
	display: grid;
	gap: 3px;
}
.tfp-live-score span,
.tfp-live-score small {
	color: #64748b;
	font-size: 11px;
	font-weight: 800;
}
.tfp-live-score strong {
	color: #2563eb;
	font-size: 42px;
	line-height: 0.95;
	letter-spacing: -0.07em;
}
.tfp-live-mini-stat {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
	border-radius: 13px;
	background: #f8fafc;
}
.tfp-live-mini-stat b {
	color: #2563eb;
	font-size: 24px;
	line-height: 1;
	letter-spacing: -0.06em;
}
.tfp-live-mini-stat span {
	color: #64748b;
	font-size: 11px;
	font-weight: 850;
	text-align: right;
}
.tfp-live-progress {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
}
.tfp-live-progress div {
	padding: 10px;
	border-radius: 13px;
	background: #f8fafc;
}
.tfp-live-progress span {
	display: block;
	color: #64748b;
	font-size: 10px;
	font-weight: 850;
}
.tfp-live-progress strong {
	display: block;
	margin-top: 3px;
	color: #0f172a;
	font-size: 22px;
	line-height: 1;
	letter-spacing: -0.06em;
}
@media (min-width: 980px) {
	.tfp-live-dashboard {
		grid-template-columns: 1.08fr 0.92fr;
	}
	.tfp-live-card--main {
		grid-row: span 2;
	}
	.tfp-live-card--ranking {
		grid-column: span 2;
	}
}
@media (max-width: 560px) {
	.tfp-access-modal__dialog {
		padding: 22px;
		border-radius: 24px;
	}
}

.hero-install-btn {
	border: none;
	cursor: pointer;

	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 8px 14px;

	border-radius: 999px;

	background: rgba(255, 255, 255, 0.14);

	color: #fff;

	font-size: 12px;
	font-weight: 700;

	backdrop-filter: blur(10px);

	transition: 0.25s;
}

.hero-install-btn:hover {
	background: rgba(255, 255, 255, 0.22);
}
#installAppBtn[style*='display:none'],
#installAppBtn[style*='display: none'] {
	display: none !important;
	padding: 0 !important;
	width: 0 !important;
	height: 0 !important;
	opacity: 0 !important;
	overflow: hidden !important;
}

@media (max-width: 480px) {

	.hero-install-btn {
		min-height: 22px;
		padding: 4px 7px;
		font-size: 9px;
		border-radius: 999px;
		gap: 4px;
	}
}

@media (max-width: 380px) {

	.hero-install-btn {
		font-size: 8.5px;
		padding: 4px 6px;
	}
}

@keyframes tfpKoalaBob {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(-2deg);
	}
	50% {
		transform: translate3d(0, -7px, 0) rotate(1deg);
	}
}

@keyframes tfpKoalaShadow {
	0%,
	100% {
		opacity: 0.52;
		transform: scaleX(1.08);
	}
	50% {
		opacity: 0.32;
		transform: scaleX(0.86);
	}
}

@keyframes tfpKoalaBall {
	0%,
	100% {
		transform: translate3d(-18px, 47px, 0) scale(1);
	}
	18% {
		transform: translate3d(-8px, 38px, 0) scale(1.04);
	}
	52% {
		transform: translate3d(-24px, -18px, 0) scale(0.92);
	}
	78% {
		transform: translate3d(-38px, 12px, 0) scale(0.98);
	}
}

@keyframes tfpKoalaRacket {
	0%,
	100% {
		transform: rotate(-31deg);
	}
	18% {
		transform: rotate(-43deg);
	}
	32% {
		transform: rotate(-22deg);
	}
	54% {
		transform: rotate(-28deg);
	}
}

@keyframes tfpKoalaArm {
	0%,
	100% {
		transform: rotate(-45deg);
	}
	18% {
		transform: rotate(-55deg);
	}
	32% {
		transform: rotate(-36deg);
	}
	54% {
		transform: rotate(-43deg);
	}
}

@keyframes tfpKoalaBallClean {
	0%,
	100% {
		transform: translate3d(-8px, 34px, 0) scale(1);
	}
	16% {
		transform: translate3d(-4px, 25px, 0) scale(1.04);
	}
	52% {
		transform: translate3d(-16px, -24px, 0) scale(0.94);
	}
	78% {
		transform: translate3d(-27px, 5px, 0) scale(0.98);
	}
}

@keyframes tfpKoalaRacketClean {
	0%,
	100% {
		transform: rotate(-14deg);
	}
	18% {
		transform: rotate(-27deg);
	}
	34% {
		transform: rotate(-8deg);
	}
	56% {
		transform: rotate(-14deg);
	}
}

/* =========================================================
   HERO PANDA MASCOT — premium final animation
   Ręka + rakieta pracują razem. Panda jest małym akcentem,
   nie wchodzi na tekst ani główne CTA.
   ========================================================= */
body[data-page='home'] .tfp-panda-mascot {
	--panda-ink: #172033;
	--panda-soft: #f8fbff;
	--panda-fur: #d7deea;
	--panda-blue: #2d7cff;
	--panda-sky: #14b8ff;
	width: 142px !important;
	height: 142px !important;
	right: -118px !important;
	bottom: 78px !important;
	top: auto !important;
	z-index: 4 !important;
	opacity: 0.98 !important;
	transform-origin: 52% 88% !important;
	animation: tfpPandaFloat 3.1s ease-in-out infinite !important;
	filter: drop-shadow(0 22px 26px rgba(2, 8, 23, 0.28)) drop-shadow(0 0 22px rgba(45, 124, 255, 0.12)) !important;
}

body[data-page='home'] .tfp-panda-mascot::before {
	left: 22px !important;
	right: 10px !important;
	bottom: 4px !important;
	height: 12px !important;
	background: radial-gradient(ellipse at center, rgba(2, 8, 23, 0.24), transparent 72%) !important;
	animation: tfpPandaShadow 3.1s ease-in-out infinite !important;
}

body[data-page='home'] .tfp-panda-mascot::after {
	content: '';
	position: absolute;
	right: 9px;
	top: 27px;
	width: 64px;
	height: 74px;
	border-radius: 999px;
	background: radial-gradient(ellipse at center, rgba(45, 124, 255, 0.18), transparent 68%);
	filter: blur(10px);
	z-index: 0;
	opacity: 0.74;
}

@keyframes tfpPandaFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) rotate(-1deg);
	}
	50% {
		transform: translate3d(0, -5px, 0) rotate(1deg);
	}
}

@keyframes tfpPandaShadow {
	0%,
	100% {
		opacity: 0.38;
		transform: scaleX(1.02);
	}
	50% {
		opacity: 0.24;
		transform: scaleX(0.82);
	}
}

@keyframes tfpPandaSwing {
	0%,
	100% {
		transform: rotate(-12deg) translate3d(0, 0, 0);
	}
	17% {
		transform: rotate(-28deg) translate3d(-1px, 1px, 0);
	}
	32% {
		transform: rotate(10deg) translate3d(2px, -1px, 0);
	}
	58% {
		transform: rotate(-4deg) translate3d(0, 0, 0);
	}
}

@keyframes tfpPandaBall {
	0%,
	100% {
		transform: translate3d(-18px, 40px, 0) scale(1);
	}
	18% {
		transform: translate3d(-22px, 28px, 0) scale(1.05);
	}
	52% {
		transform: translate3d(-10px, -38px, 0) scale(0.92);
	}
	78% {
		transform: translate3d(10px, 0, 0) scale(0.98);
	}
}

@media (min-width: 1280px) {
	body[data-page='home'] .tfp-panda-mascot {
		right: -132px !important;
		bottom: 84px !important;
	}
}

@media (max-width: 1180px) and (min-width: 721px) {
	body[data-page='home'] .tfp-panda-mascot {
		right: -36px !important;
		bottom: -54px !important;
		width: 118px !important;
		height: 118px !important;
	}
}

@media (max-width: 720px) {
	body[data-page='home'] .tfp-panda-mascot {
		width: 82px !important;
		height: 82px !important;
		right: 10px !important;
		bottom: 10px !important;
		top: auto !important;
		z-index: 2 !important;
		opacity: 0.96 !important;
		filter: drop-shadow(0 12px 16px rgba(2, 8, 23, 0.22)) !important;
	}
}

body[data-page='home'] .tfp-live-card--main {
	background: radial-gradient(circle at 90% 10%, rgba(236, 72, 153, 0.18), transparent 8rem), #fff !important;
}

body[data-page='home'] .tfp-live-score strong,
body[data-page='home'] .tfp-live-mini-stat b {
	background: linear-gradient(135deg, #2563eb 0%, #a855f7 55%, #ec4899 100%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent !important;
}

.tfp-home-highlight {
	position: relative;
	overflow: hidden;
	padding: 56px 0;
	background:
		radial-gradient(circle at 18% 5%, rgba(236, 72, 153, 0.12), transparent 18rem),
		radial-gradient(circle at 82% 18%, rgba(168, 85, 247, 0.13), transparent 20rem),
		linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
}

.tfp-home-highlight::before {
	content: '';
	position: absolute;
	inset: 16px auto auto 50%;
	width: min(760px, 92vw);
	height: 160px;
	transform: translateX(-50%);
	background: linear-gradient(90deg, rgba(236, 72, 153, 0.13), rgba(99, 102, 241, 0.13), rgba(14, 165, 233, 0.11));
	filter: blur(34px);
	opacity: 0.9;
	pointer-events: none;
}

.tfp-home-highlight .container {
	position: relative;
	z-index: 1;
}

.tfp-home-highlight__head {
	max-width: 760px;
	margin: 0 auto 26px;
	text-align: center;
}

.tfp-home-highlight__head span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 0 12px;
	margin-bottom: 10px;
	border-radius: 999px;
	background: #fff;
	border: 1px solid rgba(168, 85, 247, 0.16);
	box-shadow: 0 12px 28px rgba(86, 63, 168, 0.08);
	color: #7e22ce;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tfp-home-highlight__head h2 {
	margin: 0 0 10px;
	color: #0f1f42;
	font-size: clamp(28px, 4vw, 46px);
	line-height: 0.98;
	letter-spacing: -0.055em;
	font-weight: 950;
}

.tfp-home-highlight__head p {
	margin: 0 auto;
	max-width: 620px;
	color: #62718f;
	font-size: 15px;
	line-height: 1.55;
	font-weight: 650;
}

.tfp-home-highlight__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.tfp-home-feature {
	position: relative;
	display: flex;
	min-height: 244px;
	flex-direction: column;
	gap: 10px;
	padding: 15px;
	border-radius: 24px;
	border: 1px solid rgba(220, 231, 245, 0.86);
	background: rgba(255, 255, 255, 0.86);
	box-shadow: 0 22px 60px rgba(18, 44, 94, 0.09);
	overflow: hidden;
	transition:
		transform 0.2s ease,
		box-shadow 0.2s ease;
}

.tfp-home-feature:hover {
	transform: translateY(-4px);
	box-shadow: 0 28px 80px rgba(18, 44, 94, 0.14);
}

.tfp-home-feature::after {
	content: '';
	position: absolute;
	right: -48px;
	top: -48px;
	width: 136px;
	height: 136px;
	border-radius: 999px;
	opacity: 0.18;
	background: var(--tfp-home-accent, #2563eb);
}

.tfp-home-feature__icon {
	width: 42px;
	height: 42px;
	display: grid;
	place-items: center;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(236, 72, 153, 0.12));
	font-size: 21px;
}

.tfp-home-feature strong {
	color: #102348;
	font-size: 18px;
	line-height: 1.05;
	letter-spacing: -0.03em;
	font-weight: 950;
}

.tfp-home-feature p {
	margin: 0;
	color: #687896;
	font-size: 13px;
	line-height: 1.45;
	font-weight: 650;
}

.tfp-home-feature a {
	margin-top: auto;
	display: inline-flex;
	width: fit-content;
	align-items: center;
	min-height: 32px;
	padding: 0 12px;
	border-radius: 999px;
	color: #fff;
	text-decoration: none;
	font-size: 12px;
	font-weight: 900;
	background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 52%, #ec4899 100%);
	box-shadow: 0 12px 28px rgba(139, 92, 246, 0.22);
}

.tfp-home-feature--pink {
	--tfp-home-accent: #ec4899;
}
.tfp-home-feature--violet {
	--tfp-home-accent: #8b5cf6;
}
.tfp-home-feature--blue {
	--tfp-home-accent: #2563eb;
}
.tfp-home-feature--rose {
	--tfp-home-accent: #f43f5e;
}

.features-pro__grid--updated .feature-pro-card--pink,
.features-pro__grid--updated .feature-pro-card--violet,
.features-pro__grid--updated .feature-pro-card--blue,
.features-pro__grid--updated .feature-pro-card--rose {
	border-color: rgba(168, 85, 247, 0.16);
}

.features-pro__grid--updated .feature-pro-card--pink {
	background: radial-gradient(circle at 90% 0%, rgba(236, 72, 153, 0.16), transparent 11rem), #fff;
}
.features-pro__grid--updated .feature-pro-card--violet {
	background: radial-gradient(circle at 90% 0%, rgba(139, 92, 246, 0.16), transparent 11rem), #fff;
}
.features-pro__grid--updated .feature-pro-card--blue {
	background: radial-gradient(circle at 90% 0%, rgba(37, 99, 235, 0.14), transparent 11rem), #fff;
}
.features-pro__grid--updated .feature-pro-card--rose {
	background: radial-gradient(circle at 90% 0%, rgba(244, 63, 94, 0.13), transparent 11rem), #fff;
}

.features-pro__grid--updated .feature-pro-card--featured {
	box-shadow:
		0 26px 90px rgba(236, 72, 153, 0.16),
		0 16px 40px rgba(37, 99, 235, 0.1);
}

body[data-page='home'] .how__number {
	background: linear-gradient(135deg, #2563eb, #8b5cf6 48%, #ec4899) !important;
}

body[data-page='home'] .contact-pro {
	background:
		radial-gradient(circle at 14% 4%, rgba(236, 72, 153, 0.1), transparent 20rem),
		radial-gradient(circle at 80% 0%, rgba(139, 92, 246, 0.1), transparent 20rem), var(--color-background, #fff);
}

@media (max-width: 1100px) {
	.tfp-home-highlight__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.tfp-home-highlight {
		padding: 34px 0;
	}

	.tfp-home-highlight__head {
		margin-bottom: 16px;
		text-align: left;
	}

	.tfp-home-highlight__head h2 {
		font-size: 27px;
	}

	.tfp-home-highlight__head p {
		font-size: 13px;
	}

	.tfp-home-highlight__grid {
		display: flex;
		gap: 10px;
		overflow-x: auto;
		padding: 2px 2px 10px;
		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.tfp-home-highlight__grid::-webkit-scrollbar {
		display: none;
	}

	.tfp-home-feature {
		flex: 0 0 min(82vw, 310px);
		min-height: 218px;
		padding: 15px;
		border-radius: 20px;
		scroll-snap-align: start;
	}

	.tfp-home-feature strong {
		font-size: 14px;
	}

	.tfp-home-feature p {
		font-size: 12px;
	}
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--pink,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--violet,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--blue,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--rose {
	color: #102348 !important;
	background:
		radial-gradient(circle at 92% 0%, rgba(37, 99, 235, 0.1), transparent 11rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)) !important;
	border: 1px solid rgba(209, 220, 236, 0.92) !important;
	box-shadow: 0 20px 58px rgba(17, 35, 75, 0.08) !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card--pink {
	background:
		radial-gradient(circle at 92% 0%, rgba(236, 72, 153, 0.14), transparent 11rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)) !important;
}
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--violet {
	background:
		radial-gradient(circle at 92% 0%, rgba(139, 92, 246, 0.14), transparent 11rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)) !important;
}
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--rose {
	background:
		radial-gradient(circle at 92% 0%, rgba(244, 63, 94, 0.12), transparent 11rem),
		linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96)) !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card--pink {
	--tfp-card-accent: #ec4899;
}
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--violet {
	--tfp-card-accent: #8b5cf6;
}
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--blue {
	--tfp-card-accent: #2563eb;
}
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--rose {
	--tfp-card-accent: #f43f5e;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured {
	grid-row: auto !important;
	min-height: 270px !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card h3,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured h3 {
	color: #0f1f42 !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card p,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured p {
	color: #5f6f8d !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card__top span,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured .feature-pro-card__top span {
	background: rgba(37, 99, 235, 0.08) !important;
	color: #2557d6 !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card--pink .feature-pro-card__top span {
	background: rgba(236, 72, 153, 0.1) !important;
	color: #be185d !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card--violet .feature-pro-card__top span {
	background: rgba(139, 92, 246, 0.11) !important;
	color: #6d28d9 !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card--rose .feature-pro-card__top span {
	background: rgba(244, 63, 94, 0.1) !important;
	color: #be123c !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card__icon,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured .feature-pro-card__icon {
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(236, 72, 153, 0.1)) !important;
	color: #2563eb !important;
	box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1) !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card li,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured li {
	background: #f2f6fc !important;
	color: #42526f !important;
}

body[data-page='home'] .features-pro__grid--updated .feature-pro-card li::before,
body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured li::before {
	background: var(--tfp-card-accent, #2563eb) !important;
}

body[data-page='home'] .tfp-home-feature,
body[data-page='home'] .tfp-home-feature strong,
body[data-page='home'] .tfp-home-feature p {
	color: initial;
}

body[data-page='home'] .tfp-home-feature strong {
	color: #102348 !important;
}

body[data-page='home'] .tfp-home-feature p {
	color: #61718f !important;
}

@media (max-width: 700px) {
	body[data-page='home'] .features-pro__grid--updated .feature-pro-card--featured {
		min-height: 218px !important;
	}
}

body[data-page='home'] .tfp-live-dashboard {
	display: grid !important;
	grid-template-columns: 1.05fr 0.95fr !important;
	gap: 10px !important;
	margin-top: 10px !important;
}

body[data-page='home'] .tfp-live-card {
	min-height: 116px !important;
	padding: 14px !important;
	border-radius: 20px !important;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.95)) !important;
	border: 1px solid rgba(222, 230, 244, 0.92) !important;
	box-shadow: 0 20px 52px rgba(20, 39, 82, 0.1) !important;
	color: #132548 !important;
}

body[data-page='home'] .tfp-live-card--main {
	min-height: 178px !important;
	background:
		radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.18), transparent 10rem),
		linear-gradient(180deg, #fff, #fbfdff) !important;
}

body[data-page='home'] .tfp-live-card--ranking {
	grid-column: 1 / -1 !important;
	min-height: 96px !important;
	background:
		radial-gradient(circle at 86% 0%, rgba(139, 92, 246, 0.16), transparent 11rem),
		linear-gradient(180deg, #fff, #fbfdff) !important;
}

body[data-page='home'] .tfp-live-card__head span {
	color: #697b9a !important;
	font-size: 9px !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	font-weight: 950 !important;
}

body[data-page='home'] .tfp-live-card__head strong {
	color: #14264d !important;
	font-size: 12px !important;
	font-weight: 950 !important;
}

body[data-page='home'] .tfp-live-score span,
body[data-page='home'] .tfp-live-mini-stat span,
body[data-page='home'] .tfp-live-progress span {
	color: #627390 !important;
	font-weight: 800 !important;
}

body[data-page='home'] .tfp-live-score strong,
body[data-page='home'] .tfp-live-mini-stat b,
body[data-page='home'] .tfp-live-progress strong {
	color: #7c3aed !important;
	font-weight: 950 !important;
}

body[data-page='home'] .tfp-live-score strong {
	font-size: 48px !important;
	line-height: 0.92 !important;
	letter-spacing: -0.05em !important;
}

body[data-page='home'] .tfp-live-score small {
	color: #7b8ca9 !important;
	font-size: 11px !important;
	font-weight: 800 !important;
}

body[data-page='home'] .tfp-live-progress {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 10px !important;
}

body[data-page='home'] .tfp-live-progress > div {
	padding: 12px !important;
	border-radius: 16px !important;
	background: #f4f7fc !important;
	border: 1px solid #e6edf7 !important;
}

@media (max-width: 920px) {

	body[data-page='home'] .tfp-live-dashboard {
		grid-template-columns: 1fr !important;
	}

	body[data-page='home'] .tfp-live-card--ranking {
		grid-column: auto !important;
	}
}

body[data-page='home'] .tfp-live-dashboard {
	display: grid !important;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) !important;
	grid-auto-rows: auto !important;
	gap: 12px !important;
	margin: 0 !important;
	align-items: stretch !important;
}

body[data-page='home'] .tfp-live-card {
	min-width: 0 !important;
	min-height: 122px !important;
	padding: 14px !important;
	border-radius: 20px !important;
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
	border: 1px solid rgba(222, 230, 244, 0.95) !important;
	box-shadow: 0 18px 44px rgba(20, 39, 82, 0.11) !important;
	color: #132548 !important;
	transform: none !important;
}

body[data-page='home'] .tfp-live-card--main {
	grid-row: span 2 !important;
	min-height: 256px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
	background:
		radial-gradient(circle at 100% 0%, rgba(236, 72, 153, 0.18), transparent 10rem),
		linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

body[data-page='home'] .tfp-live-card--ranking {
	grid-column: 1 / -1 !important;
	min-height: 102px !important;
	background:
		radial-gradient(circle at 88% 0%, rgba(139, 92, 246, 0.16), transparent 11rem),
		linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
}

body[data-page='home'] .tfp-live-card__head {
	margin-bottom: 10px !important;
	align-items: flex-start !important;
}

body[data-page='home'] .tfp-live-card__head span {
	color: #667896 !important;
	font-size: 9px !important;
	line-height: 1.1 !important;
	letter-spacing: 0.08em !important;
	text-transform: uppercase !important;
	font-weight: 950 !important;
}

body[data-page='home'] .tfp-live-card__head strong {
	max-width: 130px !important;
	color: #132548 !important;
	font-size: 11px !important;
	line-height: 1.1 !important;
	font-weight: 950 !important;
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
}

body[data-page='home'] .tfp-live-score {
	display: grid !important;
	gap: 6px !important;
}

body[data-page='home'] .tfp-live-score strong {
	color: #8b5cf6 !important;
	font-size: 54px !important;
	line-height: 0.88 !important;
	letter-spacing: -0.07em !important;
}

body[data-page='home'] .tfp-live-score span,
body[data-page='home'] .tfp-live-score small,
body[data-page='home'] .tfp-live-mini-stat span,
body[data-page='home'] .tfp-live-progress span {
	color: #627390 !important;
	font-weight: 850 !important;
}

body[data-page='home'] .tfp-live-mini-stat {
	min-height: 60px !important;
	padding: 12px !important;
	border-radius: 16px !important;
	background: #f4f7fc !important;
	border: 1px solid #e6edf7 !important;
}

body[data-page='home'] .tfp-live-mini-stat b,
body[data-page='home'] .tfp-live-progress strong {
	color: #8b5cf6 !important;
	font-size: 24px !important;
	line-height: 1 !important;
	font-weight: 950 !important;
}

body[data-page='home'] .tfp-live-progress {
	display: grid !important;
	grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	gap: 10px !important;
}

body[data-page='home'] .tfp-live-progress > div {
	min-height: 56px !important;
	padding: 12px !important;
	border-radius: 16px !important;
	background: #f4f7fc !important;
	border: 1px solid #e6edf7 !important;
}

@media (max-width: 920px) {

	body[data-page='home'] .tfp-live-dashboard {
		grid-template-columns: 1fr !important;
		gap: 9px !important;
	}

	body[data-page='home'] .tfp-live-card,
	body[data-page='home'] .tfp-live-card--main,
	body[data-page='home'] .tfp-live-card--ranking {
		grid-column: auto !important;
		grid-row: auto !important;
		min-height: auto !important;
	}

	body[data-page='home'] .tfp-live-score strong {
		font-size: 42px !important;
	}
}

/* =========================================================
   TFP PATCH: premium sponsor arena
========================================================= */

.sponsor-arena {
	position: relative;
	overflow: hidden;
	padding: 92px 0;
	background:
		radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.16), transparent 30rem),
		radial-gradient(circle at 92% 10%, rgba(14, 165, 233, 0.18), transparent 32rem),
		linear-gradient(135deg, #f8fbff 0%, #edf5ff 46%, #ffffff 100%);
	border-top: 1px solid rgba(208, 220, 235, 0.72);
	border-bottom: 1px solid rgba(208, 220, 235, 0.72);
}

.sponsor-arena::before {
	content: '';
	position: absolute;
	inset: 28px;
	border-radius: 40px;
	border: 1px solid rgba(23, 105, 232, 0.08);
	pointer-events: none;
}

.sponsor-arena__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
	gap: 38px;
	align-items: center;
}

.sponsor-arena__copy {
	min-width: 0;
}

.sponsor-arena__eyebrow {
	display: inline-flex;
	margin-bottom: 16px;
	padding: 8px 12px;
	border-radius: 999px;
	color: #175cd3;
	background: #eef5ff;
	border: 1px solid rgba(23, 105, 232, 0.14);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sponsor-arena__copy h2 {
	margin: 0;
	max-width: 650px;
	color: #0b1220;
	font-size: clamp(34px, 5vw, 64px);
	line-height: 0.94;
	letter-spacing: -0.06em;
}

.sponsor-arena__copy p {
	margin: 18px 0 0;
	max-width: 570px;
	color: #667085;
	font-size: 16px;
	line-height: 1.65;
	font-weight: 650;
}

.sponsor-arena__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 22px;
}

.sponsor-arena__chips span {
	border-radius: 999px;
	padding: 9px 12px;
	background: #fff;
	border: 1px solid rgba(208, 220, 235, 0.9);
	color: #344054;
	font-size: 12px;
	font-weight: 900;
	box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
}

.sponsor-arena__showcase {
	position: relative;
	min-width: 0;
	padding: 15px;
	border-radius: 34px;
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid rgba(208, 220, 235, 0.85);
	box-shadow: 0 28px 80px rgba(16, 24, 40, 0.1);
	backdrop-filter: blur(14px);
}

.sponsor-arena__showcase::after {
	content: '';
	position: absolute;
	right: -34px;
	top: -34px;
	width: 130px;
	height: 130px;
	border-radius: 999px;
	background: linear-gradient(135deg, rgba(23, 105, 232, 0.24), rgba(14, 165, 233, 0.18));
	filter: blur(0.2px);
	z-index: 0;
}

.sponsor-arena__showcase-head {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	gap: 10px;
	align-items: center;
	margin-bottom: 14px;
	padding: 2px 4px 0;
}

.sponsor-arena__showcase-head span {
	color: #475467;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.sponsor-arena__showcase-head strong {
	border-radius: 999px;
	padding: 8px 10px;
	color: #175cd3;
	background: #eef5ff;
	font-size: 12px;
	font-weight: 950;
}

.sponsor-arena__grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 10px;
}

.sponsor-arena__card {
	min-width: 0;
	min-height: 106px;
	padding: 12px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	gap: 13px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.96));
	border: 1px solid rgba(208, 220, 235, 0.84);
	text-decoration: none;
	box-shadow: 0 16px 34px rgba(16, 24, 40, 0.055);
	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease,
		border-color 0.18s ease;
}

.sponsor-arena__card:hover {
	transform: translateY(-3px);
	border-color: rgba(23, 105, 232, 0.25);
	box-shadow: 0 24px 50px rgba(23, 105, 232, 0.11);
}

.sponsor-arena__logo-box {
	flex: 0 0 86px;
	width: 86px;
	height: 66px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fff;
	border: 1px solid rgba(208, 220, 235, 0.8);
	overflow: hidden;
}

.sponsor-arena__logo-box img {
	max-width: 82%;
	max-height: 76%;
	object-fit: contain;
	filter: saturate(0.98) contrast(1.02);
}

.sponsor-arena__logo-box span {
	color: #175cd3;
	font-size: 15px;
	font-weight: 950;
	letter-spacing: -0.02em;
}

.sponsor-arena__logo-text {
	min-width: 0;
	display: grid;
	gap: 4px;
}

.sponsor-arena__logo-text strong {
	color: #101828;
	font-size: 15px;
	font-weight: 950;
	line-height: 1.1;
}

.sponsor-arena__logo-text small {
	color: #667085;
	font-size: 11px;
	font-weight: 800;
	line-height: 1.25;
}

@media (max-width: 980px) {
	.sponsor-arena {
		padding: 70px 0;
	}

	.sponsor-arena__inner {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.sponsor-arena {
		padding: 54px 0;
	}

	.sponsor-arena::before {
		inset: 14px;
		border-radius: 26px;
	}

	.sponsor-arena__copy h2 {
		font-size: 36px;
	}

	.sponsor-arena__copy p {
		font-size: 14px;
	}

	.sponsor-arena__showcase {
		padding: 12px;
		border-radius: 26px;
	}

	.sponsor-arena__grid {
		grid-template-columns: 1fr;
	}

	.sponsor-arena__card {
		min-height: 92px;
		border-radius: 20px;
	}

	.sponsor-arena__logo-box {
		flex-basis: 78px;
		width: 78px;
		height: 58px;
		border-radius: 16px;
	}
}

/* =========================================================
   TFP PATCH: sponsor showcase premium v2
========================================================= */

.sponsor-arena {
	display: none !important;
}

.sponsor-showcase {
	position: relative;
	overflow: hidden;
	padding: 110px 0 0;
	background:
		radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.32), transparent 28rem),
		radial-gradient(circle at 86% 18%, rgba(14, 165, 233, 0.22), transparent 28rem),
		linear-gradient(135deg, #061126 0%, #0b1a3a 50%, #07111f 100%);
	color: #fff;
	isolation: isolate;
}

.sponsor-showcase::before {
	content: '';
	position: absolute;
	inset: 22px;
	border-radius: 44px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0) 34%),
		radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.11), transparent 22rem);
	pointer-events: none;
	z-index: -1;
}

.sponsor-showcase::after {
	content: '';
	position: absolute;
	left: 50%;
	top: -260px;
	width: 820px;
	height: 820px;
	transform: translateX(-50%);
	border-radius: 999px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.18), transparent 62%);
	filter: blur(2px);
	z-index: -2;
}

.sponsor-showcase__glow {
	position: absolute;
	border-radius: 999px;
	pointer-events: none;
	filter: blur(12px);
	opacity: 0.88;
	animation: sponsorFloat 9s ease-in-out infinite;
}

.sponsor-showcase__glow--one {
	width: 220px;
	height: 220px;
	right: 9%;
	top: 80px;
	background: rgba(14, 165, 233, 0.24);
}

.sponsor-showcase__glow--two {
	width: 160px;
	height: 160px;
	left: 7%;
	bottom: 80px;
	background: rgba(99, 102, 241, 0.2);
	animation-delay: -3s;
}

@keyframes sponsorFloat {
	0%,
	100% {
		transform: translate3d(0, 0, 0) scale(1);
	}
	50% {
		transform: translate3d(0, -18px, 0) scale(1.05);
	}
}

.sponsor-showcase__inner {
	position: relative;
	display: grid;
	grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
	gap: 54px;
	align-items: center;
	padding-bottom: 74px;
}

.sponsor-showcase__copy {
	min-width: 0;
}

.sponsor-showcase__eyebrow {
	display: inline-flex;
	margin-bottom: 12px;
	padding: 9px 13px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.13);
	color: #bfdbfe;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.sponsor-showcase__copy h2 {
	margin: 0;
	max-width: 620px;
	color: #fff;
	font-size: clamp(46px, 7vw, 92px);
	line-height: 0.88;
	letter-spacing: -0.075em;
}

.sponsor-showcase__copy p {
	margin: 24px 0 0;
	max-width: 520px;
	color: rgba(226, 232, 240, 0.82);
	font-size: 17px;
	line-height: 1.65;
	font-weight: 650;
}

.sponsor-showcase__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.sponsor-showcase__stats div {
	min-width: 116px;
	padding: 14px 16px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.11);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sponsor-showcase__stats strong {
	display: block;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	font-weight: 950;
	letter-spacing: -0.05em;
}

.sponsor-showcase__stats span {
	display: block;
	margin-top: 5px;
	color: rgba(226, 232, 240, 0.7);
	font-size: 11px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.sponsor-showcase__stage {
	position: relative;
	min-width: 0;
	display: grid;
	grid-template-columns: minmax(280px, 0.9fr) minmax(240px, 1fr);
	gap: 16px;
	align-items: stretch;
	perspective: 1100px;
}

.sponsor-showcase__main {
	position: relative;
	overflow: hidden;
	min-height: 430px;
	padding: 28px;
	border-radius: 36px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	background:
		radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.2), transparent 16rem),
		linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow:
		0 44px 110px rgba(0, 0, 0, 0.28),
		inset 0 1px 0 rgba(255, 255, 255, 0.22);
	backdrop-filter: blur(18px);
	transform: rotateY(-4deg) rotateX(2deg);
}

.sponsor-showcase__main::before {
	content: '';
	position: absolute;
	inset: -2px;
	border-radius: inherit;
	padding: 1px;
	background: linear-gradient(135deg, rgba(125, 211, 252, 0.7), rgba(255, 255, 255, 0.06), rgba(37, 99, 235, 0.55));
	-webkit-mask:
		linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
}

.sponsor-showcase__main::after {
	content: '';
	position: absolute;
	width: 260px;
	height: 260px;
	right: -96px;
	bottom: -110px;
	border-radius: 999px;
	background: rgba(14, 165, 233, 0.24);
	filter: blur(3px);
}

.sponsor-showcase__main-label {
	position: relative;
	z-index: 1;
	width: fit-content;
	padding: 8px 11px;
	border-radius: 999px;
	background: rgba(15, 23, 42, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.13);
	color: #dbeafe;
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.sponsor-showcase__main-logo {
	position: relative;
	z-index: 1;
	width: min(100%, 330px);
	min-height: 170px;
	margin: 24px auto;
	border-radius: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.94));
	box-shadow:
		0 28px 80px rgba(0, 0, 0, 0.26),
		inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.sponsor-showcase__main-logo img {
	max-width: 78%;
	max-height: 118px;
	object-fit: contain;
}

.sponsor-showcase__main-logo span {
	color: #1769e8;
	font-size: clamp(42px, 6vw, 76px);
	font-weight: 950;
	letter-spacing: -0.08em;
}

.sponsor-showcase__main-text {
	position: relative;
	z-index: 1;
}

.sponsor-showcase__main-text strong {
	display: block;
	color: #fff;
	font-size: 28px;
	line-height: 1.05;
	font-weight: 950;
	letter-spacing: -0.045em;
}

.sponsor-showcase__main-text small {
	display: block;
	margin-top: 6px;
	color: rgba(226, 232, 240, 0.74);
	font-size: 13px;
	font-weight: 800;
}

.sponsor-showcase__main-link {
	position: relative;
	z-index: 1;
	width: fit-content;
	margin-top: 14px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #07111f;
	background: #fff;
	font-size: 12px;
	font-weight: 950;
	text-decoration: none;
}

.sponsor-showcase__wall {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	align-content: center;
}

.sponsor-showcase__mini-card {
	min-height: 86px;
	padding: 12px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	gap: 13px;
	color: #fff;
	text-decoration: none;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(14px);
	transition:
		transform 0.22s ease,
		background 0.22s ease,
		border-color 0.22s ease;
}

.sponsor-showcase__mini-card:nth-child(even) {
	transform: translateX(18px);
}

.sponsor-showcase__mini-card:hover {
	transform: translateX(4px) translateY(-3px);
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(147, 197, 253, 0.26);
}

.sponsor-showcase__mini-card:nth-child(even):hover {
	transform: translateX(22px) translateY(-3px);
}

.sponsor-showcase__mini-logo {
	flex: 0 0 72px;
	width: 72px;
	height: 58px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.94);
	overflow: hidden;
}

.sponsor-showcase__mini-logo img {
	max-width: 82%;
	max-height: 72%;
	object-fit: contain;
}

.sponsor-showcase__mini-logo span {
	color: #1769e8;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: -0.05em;
}

.sponsor-showcase__mini-text {
	min-width: 0;
	display: grid;
	gap: 4px;
}

.sponsor-showcase__mini-text strong {
	color: #fff;
	font-size: 15px;
	line-height: 1.08;
	font-weight: 950;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sponsor-showcase__mini-text small {
	color: rgba(226, 232, 240, 0.68);
	font-size: 11px;
	font-weight: 800;
}

.sponsor-showcase__marquee {
	position: relative;
	overflow: hidden;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.055);
	backdrop-filter: blur(14px);
}

.sponsor-showcase__marquee::before,
.sponsor-showcase__marquee::after {
	content: '';
	position: absolute;
	top: 0;
	width: 120px;
	height: 100%;
	z-index: 2;
	pointer-events: none;
}

.sponsor-showcase__marquee::before {
	left: 0;
	background: linear-gradient(90deg, #071126, transparent);
}

.sponsor-showcase__marquee::after {
	right: 0;
	background: linear-gradient(270deg, #071126, transparent);
}

.sponsor-showcase__marquee-track {
	width: max-content;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 0;
	animation: sponsorMarquee 28s linear infinite;
}

.sponsor-showcase__marquee span {
	min-width: 170px;
	height: 54px;
	padding: 0 20px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255, 255, 255, 0.09);
	border: 1px solid rgba(255, 255, 255, 0.11);
	color: rgba(255, 255, 255, 0.82);
	font-size: 13px;
	font-weight: 950;
	white-space: nowrap;
}

.sponsor-showcase__marquee img {
	max-width: 120px;
	max-height: 34px;
	object-fit: contain;
	filter: brightness(0) invert(1);
	opacity: 0.86;
}

@keyframes sponsorMarquee {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.sponsor-showcase__glow,
	.sponsor-showcase__marquee-track {
		animation: none !important;
	}
}

@media (max-width: 1100px) {
	.sponsor-showcase {
		padding-top: 86px;
	}

	.sponsor-showcase__inner {
		grid-template-columns: 1fr;
		gap: 36px;
	}

	.sponsor-showcase__stage {
		grid-template-columns: 1fr;
	}

	.sponsor-showcase__main {
		min-height: 350px;
		transform: none;
	}

	.sponsor-showcase__wall {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.sponsor-showcase__mini-card:nth-child(even),
	.sponsor-showcase__mini-card:nth-child(even):hover {
		transform: none;
	}
}

@media (max-width: 640px) {
	.sponsor-showcase {
		padding-top: 62px;
	}

	.sponsor-showcase::before {
		inset: 10px;
		border-radius: 28px;
	}

	.sponsor-showcase__inner {
		gap: 24px;
		padding-bottom: 46px;
	}

	.sponsor-showcase__copy h2 {
		font-size: 44px;
	}

	.sponsor-showcase__copy p {
		font-size: 14px;
	}

	.sponsor-showcase__stats {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}

	.sponsor-showcase__main {
		min-height: 310px;
		padding: 15px;
		border-radius: 26px;
	}

	.sponsor-showcase__main-logo {
		min-height: 130px;
		border-radius: 24px;
	}

	.sponsor-showcase__main-text strong {
		font-size: 22px;
	}

	.sponsor-showcase__wall {
		grid-template-columns: 1fr;
	}

	.sponsor-showcase__mini-card {
		min-height: 78px;
		border-radius: 20px;
	}

	.sponsor-showcase__marquee span {
		min-width: 140px;
		height: 46px;
	}
}

/* =========================================================
   TFP PATCH: sponsors clean headline + no stat banners
========================================================= */

.sponsor-showcase__copy {
	overflow: visible !important;
	min-width: 0 !important;
}

.sponsor-showcase__copy h2 {
	max-width: 560px !important;
	font-size: clamp(38px, 4.9vw, 72px) !important;
	line-height: 0.92 !important;
	letter-spacing: -0.065em !important;
	overflow-wrap: normal !important;
	word-break: normal !important;
}

.sponsor-showcase__copy p {
	max-width: 440px !important;
	margin-top: 18px !important;
}

.sponsor-showcase__stats {
	display: none !important;
}

.sponsor-showcase__inner {
	grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr) !important;
	gap: 46px !important;
}

@media (max-width: 1100px) {
	.sponsor-showcase__copy h2 {
		max-width: 760px !important;
		font-size: clamp(40px, 8vw, 76px) !important;
	}

	.sponsor-showcase__inner {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 640px) {
	.sponsor-showcase__copy h2 {
		font-size: 40px !important;
		line-height: 0.95 !important;
		letter-spacing: -0.05em !important;
	}

	.sponsor-showcase__copy p {
		font-size: 14px !important;
	}
}

/* =========================================================
   TFP PATCH: sponsor showcase no horizontal overflow
========================================================= */

html,
body {
	overflow-x: hidden !important;
}

.sponsor-showcase {
	display: block !important;
	position: relative !important;
	left: auto !important;
	right: auto !important;
	transform: none !important;
	width: 100% !important;
	max-width: 100% !important;
	min-width: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	overflow: hidden !important;
}

.sponsor-showcase.full-bleed {
	left: auto !important;
	right: auto !important;
	transform: none !important;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.sponsor-showcase .container,
.sponsor-showcase__inner {
	width: min(1180px, calc(100% - 40px)) !important;
	max-width: 1180px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.sponsor-showcase__inner {
	grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr) !important;
	gap: 34px !important;
}

.sponsor-showcase__copy {
	min-width: 0 !important;
	max-width: 100% !important;
	overflow: visible !important;
}

.sponsor-showcase__copy h2 {
	max-width: 100% !important;
	font-size: clamp(36px, 4.2vw, 62px) !important;
	line-height: 0.94 !important;
	letter-spacing: -0.055em !important;
	white-space: normal !important;
}

.sponsor-showcase__stage {
	min-width: 0 !important;
	max-width: 100% !important;
}

.sponsor-showcase__main {
	min-width: 0 !important;
	transform: none !important;
}

.sponsor-showcase__mini-card:nth-child(even),
.sponsor-showcase__mini-card:nth-child(even):hover {
	transform: none !important;
}

.sponsor-showcase__marquee {
	width: 100% !important;
	max-width: 100% !important;
	overflow: hidden !important;
}

.sponsor-showcase__marquee-track {
	max-width: none !important;
}

@media (max-width: 1100px) {
	.sponsor-showcase__inner {
		grid-template-columns: 1fr !important;
	}

	.sponsor-showcase__copy h2 {
		font-size: clamp(40px, 7vw, 70px) !important;
	}
}

@media (max-width: 640px) {
	.sponsor-showcase .container,
	.sponsor-showcase__inner {
		width: min(100% - 24px, 1180px) !important;
	}

	.sponsor-showcase__copy h2 {
		font-size: 38px !important;
		line-height: 0.96 !important;
	}
}

@keyframes tfpHeroParticles {
	0% {
		transform: translate3d(0, 0, 0) rotate(0deg);
	}
	100% {
		transform: translate3d(-120px, -80px, 0) rotate(2deg);
	}
}

.tfp-live-card {
    position: relative !important;
    border-radius: 30px !important;
    padding: 16px !important;
    background:
        linear-gradient(145deg, rgba(255,255,255,.20), rgba(255,255,255,.08)) !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    box-shadow: 0 36px 90px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.16) !important;
    backdrop-filter: blur(18px) !important;
    transform: rotate(-1.2deg) !important;
}

.tfp-live-card::before {
    content: "" !important;
    position: absolute !important;
    inset: -1px !important;
    border-radius: inherit !important;
    background: linear-gradient(135deg, rgba(255,255,255,.22), transparent 38%, rgba(14,165,233,.24)) !important;
    pointer-events: none !important;
    z-index: -1 !important;
}

.tfp-live-card__top {
    border-radius: 20px !important;
    padding: 13px 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    background: rgba(7,18,38,.70) !important;
}

.tfp-live-card__top span {
    display: block !important;
    color: rgba(226,232,240,.72) !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.tfp-live-card__top strong {
    display: block !important;
    margin-top: 5px !important;
    color: #fff !important;
    font-size: 15px !important;
    font-weight: 950 !important;
}

.tfp-live-card__top em {
    flex: 0 0 auto !important;
    min-height: 30px !important;
    border-radius: 999px !important;
    padding: 0 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    color: #bbf7d0 !important;
    background: rgba(34,197,94,.14) !important;
    font-size: 10px !important;
    font-style: normal !important;
    font-weight: 950 !important;
}

.tfp-live-card__top em i {
    width: 7px !important;
    height: 7px !important;
    border-radius: 999px !important;
    background: #22c55e !important;
    box-shadow: 0 0 0 6px rgba(34,197,94,.12) !important;
}

.tfp-live-card__main {
    margin-top: 12px !important;
    display: grid !important;
    grid-template-columns: 1.1fr .9fr !important;
    gap: 12px !important;
}

.tfp-live-tile {
    min-height: 118px !important;
    border-radius: 20px !important;
    padding: 16px !important;
    display: grid !important;
    align-content: space-between !important;
    background: rgba(255,255,255,.94) !important;
    color: #0f172a !important;
    overflow: hidden !important;
}

.tfp-live-tile--big {
    grid-row: span 2 !important;
    min-height: 248px !important;
    background:
        radial-gradient(circle at 86% 8%, rgba(124,58,237,.12), transparent 12rem),
        rgba(255,255,255,.96) !important;
}

.tfp-live-tile span,
.tfp-live-card__modules span {
    color: #667085 !important;
    font-size: 10px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

.tfp-live-tile strong {
    margin-top: auto !important;
    color: #7c3aed !important;
    font-size: 44px !important;
    line-height: .9 !important;
    letter-spacing: -.06em !important;
    font-weight: 950 !important;
}

.tfp-live-tile small {
    margin-top: 8px !important;
    color: #667085 !important;
    font-size: 12px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
}

.tfp-live-card__modules {
    margin-top: 12px !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

.tfp-live-card__modules article {
    min-width: 0 !important;
    min-height: 92px !important;
    border-radius: 18px !important;
    padding: 13px !important;
    display: grid !important;
    align-content: space-between !important;
    background: rgba(255,255,255,.92) !important;
    color: #0f172a !important;
}

.tfp-live-card__modules strong {
    margin-top: 8px !important;
    color: #0f172a !important;
    font-size: 15px !important;
    line-height: 1.05 !important;
    font-weight: 950 !important;
}

.tfp-live-card__modules small {
    margin-top: 5px !important;
    color: #667085 !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    font-weight: 760 !important;
}

@media (max-width: 760px) {

    .tfp-live-card {
        border-radius: 22px !important;
        padding: 10px !important;
        transform: none !important;
    }

    .tfp-live-card__top {
        border-radius: 16px !important;
        padding: 11px !important;
    }

    .tfp-live-card__main {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .tfp-live-tile,
    .tfp-live-tile--big {
        min-height: 92px !important;
        grid-row: auto !important;
        border-radius: 16px !important;
        padding: 12px !important;
    }

    .tfp-live-tile strong {
        font-size: 32px !important;
    }

    .tfp-live-card__modules {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .tfp-live-card__modules article {
        min-height: 78px !important;
        border-radius: 15px !important;
        padding: 11px !important;
    }
}

@keyframes heroPulseRing {
	0% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(132, 204, 22, 0); }
	100% { box-shadow: 0 0 0 0 rgba(132, 204, 22, 0); }
}


/* Advanced contact form */
.contact-pro--advanced .contact-pro__shell {
	align-items: center;
}

.contact-pro__items--support {
	margin-top: 20px;
}

.contact-pro__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(255, 255, 255, .16);
}

.contact-pro__trust span {
	color: #bfdbfe;
	font-size: 12px;
	font-weight: 800;
}

.contact-pro__trust strong {
	padding: 7px 10px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .12);
	color: #fff;
	font-size: 11px;
	font-weight: 900;
}

.contact-pro__card--advanced {
	position: relative;
	overflow: visible;
	padding: 18px;
}

.contact-pro__card-kicker {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 10px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.contact-pro__form--advanced {
	gap: 12px;
}

.contact-purpose {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	margin-bottom: 2px;
}

.contact-purpose__card {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	grid-template-areas:
		"icon title"
		"icon text";
	gap: 2px 9px;
	align-items: center;
	min-height: 70px;
	padding: 11px;
	border: 1px solid #e2eaf6;
	border-radius: 16px;
	background: #f8fbff;
	cursor: pointer;
	transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.contact-purpose__card:hover,
.contact-purpose__card.is-active {
	border-color: rgba(37, 99, 235, .38);
	background: #fff;
	box-shadow: 0 12px 26px rgba(37, 99, 235, .10);
	transform: translateY(-1px);
}

.contact-purpose__card input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
}

.contact-purpose__card > span {
	grid-area: icon;
	display: grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 13px;
	background: #eaf2ff;
	font-size: 17px;
}

.contact-purpose__card strong {
	grid-area: title;
	color: #0f172a;
	font-size: 13px;
	font-weight: 950;
	line-height: 1.1;
}

.contact-purpose__card small {
	grid-area: text;
	color: #64748b;
	font-size: 10px;
	font-weight: 750;
	line-height: 1.2;
}

.contact-pro__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 11px;
}

.contact-dynamic {
	display: grid;
}

.contact-dynamic__panel {
	display: none;
}

.contact-dynamic__panel.is-active {
	display: block;
}

.contact-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}

.contact-chips button {
	border: 1px solid #dbe7f5;
	border-radius: 999px;
	padding: 7px 10px;
	background: #fff;
	color: #2563eb;
	font-size: 11px;
	font-weight: 900;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.contact-chips button:hover {
	border-color: rgba(37, 99, 235, .34);
	background: #eff6ff;
	transform: translateY(-1px);
}

.contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 9px;
	padding: 10px 11px;
	border: 1px solid #e2eaf6;
	border-radius: 14px;
	background: #f8fbff;
	color: #64748b;
	font-size: 11px;
	line-height: 1.35;
	font-weight: 700;
}

.contact-consent input {
	margin-top: 2px;
	accent-color: #2563eb;
}

.contact-form-status {
	padding: 11px 12px;
	border-radius: 14px;
	font-size: 12px;
	font-weight: 850;
	line-height: 1.35;
}

.contact-form-status.is-success {
	border: 1px solid #bbf7d0;
	background: #f0fdf4;
	color: #166534;
}

.contact-form-status.is-error {
	border: 1px solid #fecaca;
	background: #fef2f2;
	color: #991b1b;
}

@media (min-width: 640px) {
	.contact-pro__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 900px) {
	.contact-pro__card--advanced {
		padding: 24px;
	}

	.contact-pro__form--advanced .form-input {
		min-height: 46px;
	}
}

@media (max-width: 520px) {
	.contact-purpose {
		grid-template-columns: 1fr;
	}

	.contact-pro__trust {
		gap: 6px;
	}

	.contact-pro__card--advanced {
		border-radius: 22px;
		padding: 14px;
	}
}


/* Access / trial section */
.access-pro {
	position: relative;
	overflow: hidden;
	padding: 92px 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .12), transparent 30rem),
		radial-gradient(circle at 88% 16%, rgba(168, 85, 247, .12), transparent 32rem),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border-top: 1px solid rgba(226, 232, 240, .85);
	border-bottom: 1px solid rgba(226, 232, 240, .85);
}

.access-pro__shell {
	display: grid;
	gap: 22px;
	align-items: center;
}

.access-pro__intro {
	padding: 26px;
	border: 1px solid rgba(219, 234, 254, .9);
	border-radius: 30px;
	background:
		radial-gradient(circle at top right, rgba(37, 99, 235, .16), transparent 22rem),
		linear-gradient(135deg, #0f172a 0%, #1d4ed8 68%, #2563eb 100%);
	color: #fff;
	box-shadow: 0 26px 70px rgba(15, 23, 42, .16);
}

.access-pro__eyebrow {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 7px 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, .14);
	color: #dbeafe;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.access-pro__intro h2 {
	max-width: 760px;
	margin: 16px 0 12px;
	color: #fff;
	font-size: clamp(30px, 5vw, 50px);
	line-height: .98;
	letter-spacing: -.06em;
}

.access-pro__intro p {
	max-width: 690px;
	margin: 0;
	color: #dbeafe;
	font-size: 15px;
	line-height: 1.62;
	font-weight: 600;
}

.access-pro__notice {
	display: grid;
	gap: 4px;
	max-width: 620px;
	margin-top: 18px;
	padding: 14px 15px;
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 18px;
	background: rgba(255, 255, 255, .11);
	backdrop-filter: blur(12px);
}

.access-pro__notice strong {
	color: #fff;
	font-size: 18px;
	font-weight: 950;
	letter-spacing: -.02em;
}

.access-pro__notice span {
	color: #bfdbfe;
	font-size: 13px;
	line-height: 1.42;
	font-weight: 750;
}

.access-pro__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

.access-pro__cards {
	display: grid;
	gap: 14px;
}

.access-plan {
	position: relative;
	overflow: hidden;
	padding: 20px;
	border: 1px solid #e2eaf6;
	border-radius: 26px;
	background: rgba(255, 255, 255, .94);
	box-shadow: 0 18px 48px rgba(15, 23, 42, .08);
}

.access-plan--featured {
	border-color: rgba(37, 99, 235, .30);
	box-shadow: 0 26px 70px rgba(37, 99, 235, .14);
}

.access-plan--featured::before {
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	height: 4px;
	background: linear-gradient(90deg, #2563eb, #22c55e, #a855f7);
}

.access-plan__badge {
	display: inline-flex;
	width: fit-content;
	padding: 6px 10px;
	border-radius: 999px;
	background: #dcfce7;
	color: #047857;
	font-size: 10px;
	font-weight: 950;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.access-plan__badge--soft {
	background: #eff6ff;
	color: #2563eb;
}

.access-plan__badge--future {
	background: #f5f3ff;
	color: #7c3aed;
}

.access-plan h3 {
	margin: 12px 0 10px;
	color: #0f172a;
	font-size: 22px;
	line-height: 1.05;
	letter-spacing: -.045em;
}

.access-plan__price {
	display: flex;
	align-items: baseline;
	gap: 8px;
	margin-bottom: 10px;
}

.access-plan__price strong {
	color: #0f172a;
	font-size: 36px;
	line-height: 1;
	font-weight: 950;
	letter-spacing: -.06em;
}

.access-plan__price span {
	color: #64748b;
	font-size: 13px;
	font-weight: 850;
}

.access-plan__price--small strong {
	font-size: 26px;
}

.access-plan p {
	margin: 0 0 12px;
	color: #64748b;
	font-size: 13px;
	line-height: 1.55;
	font-weight: 650;
}

.access-plan ul {
	display: grid;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.access-plan li {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	color: #0f172a;
	font-size: 13px;
	font-weight: 800;
}

.access-plan li::before {
	content: "✓";
	display: grid;
	place-items: center;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #eff6ff;
	color: #2563eb;
	font-size: 11px;
	font-weight: 950;
}

@media (min-width: 980px) {
	.access-pro__shell {
		grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
		gap: 24px;
	}

	.access-pro__intro {
		padding: 40px;
	}

	.access-pro__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.access-plan--featured {
		grid-row: span 2;
	}
}

@media (max-width: 640px) {
	.access-pro {
		padding: 64px 0;
	}

	.access-pro__intro,
	.access-plan {
		border-radius: 22px;
	}

	.access-pro__intro {
		padding: 20px;
	}

	.access-pro__actions .btn {
		width: 100%;
	}
}


/* === TFP PATCH: uproszczony kontakt właściciela === */
.contact-pro--simple {
    position: relative;
}

.contact-pro--simple .contact-pro__shell--simple {
    align-items: stretch;
    gap: clamp(22px, 4vw, 34px);
}

.contact-pro__content--simple {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-pro__content--simple h2 {
    max-width: 620px;
}

.contact-pro__content--simple > p {
    max-width: 610px;
}

.contact-owner-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    margin: 22px 0 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 20px 45px rgba(3, 7, 18, .12);
}

.contact-owner-card__icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    font-size: 26px;
    font-weight: 950;
    box-shadow: 0 18px 30px rgba(22, 163, 74, .24);
}

.contact-owner-card__body {
    min-width: 0;
}

.contact-owner-card__body span {
    display: block;
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-owner-card__body a {
    display: inline-flex;
    color: #fff;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.04em;
    text-decoration: none;
}

.contact-owner-card__body a:hover {
    text-decoration: underline;
}

.contact-owner-card__body small {
    display: block;
    margin-top: 7px;
    color: #dbeafe;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 700;
}

.contact-pro__items--simple {
    margin-top: 0;
    grid-template-columns: 1fr;
}

.contact-pro__items--simple .contact-pro__item {
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
}

.contact-pro__card--simple {
    max-width: 520px;
    width: 100%;
    align-self: center;
}

.contact-pro__card--simple .contact-pro__card-head h3 {
    font-size: clamp(26px, 4vw, 34px);
}

.contact-pro__card--simple .contact-pro__card-head p {
    max-width: 390px;
}

.contact-pro__form--simple {
    gap: 13px;
}

.contact-pro__grid--simple {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-chips--simple {
    gap: 8px;
}

.contact-chips--simple button {
    padding: 8px 12px;
    background: #eff6ff;
    border-color: #cfe0ff;
}

.contact-consent--simple {
    padding: 11px 12px;
}

@media (max-width: 900px) {
    .contact-pro--simple .contact-pro__shell--simple {
        grid-template-columns: 1fr;
    }

    .contact-pro__card--simple {
        max-width: none;
    }
}

@media (max-width: 620px) {
    .contact-owner-card {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        border-radius: 20px;
    }

    .contact-owner-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        font-size: 22px;
    }

    .contact-owner-card__body a {
        font-size: 30px;
    }

    .contact-pro__grid--simple {
        grid-template-columns: 1fr;
    }

    .contact-pro__card--simple {
        padding: 16px !important;
        border-radius: 24px !important;
    }

    .contact-pro__items--simple .contact-pro__item {
        padding: 12px;
    }
}


/* === TFP PATCH: kontakt bez nachalnego napisu właściciel === */
.contact-owner-card {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    gap: 14px !important;
    padding: 16px !important;
    border-radius: 22px !important;
    background:
        radial-gradient(circle at 0 0, rgba(59,130,246,.20), transparent 34%),
        rgba(255, 255, 255, .10) !important;
    border: 1px solid rgba(219, 234, 254, .22) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 34px rgba(3, 7, 18, .10) !important;
}

.contact-owner-card__icon {
    width: 46px !important;
    height: 46px !important;
    border-radius: 16px !important;
    background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
    color: #fff !important;
    font-size: 13px !important;
    letter-spacing: -.03em !important;
    font-weight: 950 !important;
    box-shadow: 0 14px 26px rgba(37, 99, 235, .22) !important;
}

.contact-owner-card__body span {
    color: #bfdbfe !important;
    font-size: 11px !important;
    letter-spacing: .12em !important;
    margin-bottom: 3px !important;
}

.contact-owner-card__body strong {
    display: block;
    color: #fff;
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.05;
    letter-spacing: -.04em;
    font-weight: 950;
}

.contact-owner-card__body small {
    color: rgba(219, 234, 254, .92) !important;
    font-size: 12px !important;
    margin-top: 5px !important;
}

.contact-owner-card__phone {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffffff, #dbeafe);
    color: #0f3fba !important;
    font-size: 18px !important;
    line-height: 1 !important;
    font-weight: 950 !important;
    letter-spacing: -.03em !important;
    text-decoration: none !important;
    white-space: nowrap;
    box-shadow: 0 14px 28px rgba(15, 23, 42, .14);
}

.contact-owner-card__phone:hover {
    transform: translateY(-1px);
    text-decoration: none !important;
}

.contact-owner-card__body > a:not(.contact-owner-card__phone) {
    font-size: inherit !important;
}

@media (max-width: 620px) {
    .contact-owner-card {
        grid-template-columns: auto minmax(0, 1fr) !important;
        grid-template-areas:
            "icon body"
            "phone phone" !important;
        padding: 14px !important;
        border-radius: 18px !important;
    }

    .contact-owner-card__icon {
        grid-area: icon;
        width: 42px !important;
        height: 42px !important;
        border-radius: 14px !important;
        font-size: 12px !important;
    }

    .contact-owner-card__body {
        grid-area: body;
    }

    .contact-owner-card__body strong {
        font-size: 18px;
    }

    .contact-owner-card__phone {
        grid-area: phone;
        width: 100%;
        min-height: 44px;
        font-size: 20px !important;
    }
}

@keyframes tfpNetworkSpin {
    to { transform: rotate(360deg); }
}

.tfp-home-highlight {
	padding: 70px 0 78px;
	background:
		radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.12), transparent 20rem),
		radial-gradient(circle at 88% 12%, rgba(236, 72, 153, 0.1), transparent 22rem),
		linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
}

.tfp-home-highlight__head {
	max-width: 860px;
	margin-bottom: 34px;
}

.tfp-home-highlight__head span {
	background: rgba(255, 255, 255, 0.78);
	border-color: rgba(37, 99, 235, 0.16);
	color: #2563eb;
}

.tfp-home-highlight__head h2 {
	max-width: 820px;
	margin-left: auto;
	margin-right: auto;
	font-size: clamp(32px, 4.4vw, 58px);
	line-height: 0.94;
}

.tfp-home-highlight__head p {
	max-width: 760px;
	font-size: 16px;
}

.tfp-ecosystem-showcase {
	display: grid;
	grid-template-columns: 1.12fr 1fr 1fr;
	gap: 16px;
	align-items: stretch;
	margin-bottom: 18px;
}

.tfp-ecosystem-card {
	position: relative;
	min-height: 360px;
	padding: 24px;
	border-radius: 30px;
	border: 1px solid rgba(148, 163, 184, 0.22);
	background:
		radial-gradient(circle at 78% 8%, rgba(45, 212, 191, 0.18), transparent 9rem),
		linear-gradient(145deg, #071332 0%, #111a4f 52%, #070b22 100%);
	box-shadow:
		0 34px 90px rgba(15, 23, 42, 0.18),
		inset 0 1px 0 rgba(255, 255, 255, 0.08);
	color: #fff;
	overflow: hidden;
	isolation: isolate;
}

.tfp-ecosystem-card::before {
	content: '';
	position: absolute;
	inset: auto -30% -34% -30%;
	height: 58%;
	background:
		linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.22), transparent),
		repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 46px),
		repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 34px);
	transform: perspective(520px) rotateX(68deg);
	transform-origin: bottom center;
	opacity: 0.72;
	z-index: -1;
}

.tfp-ecosystem-card::after {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 210px;
	height: 210px;
	border-radius: 999px;
	border: 1px solid rgba(125, 211, 252, 0.22);
	box-shadow: 0 0 80px rgba(34, 211, 238, 0.22);
	opacity: 0.9;
	z-index: -1;
}

.tfp-ecosystem-card--judge {
	grid-row: span 2;
	background:
		radial-gradient(circle at 74% 10%, rgba(168, 85, 247, 0.26), transparent 12rem),
		radial-gradient(circle at 18% 88%, rgba(34, 211, 238, 0.18), transparent 12rem),
		linear-gradient(145deg, #070b22 0%, #12124a 52%, #050816 100%);
}

.tfp-ecosystem-card--coach {
	background:
		radial-gradient(circle at 78% 8%, rgba(34, 197, 94, 0.24), transparent 10rem),
		linear-gradient(145deg, #071332 0%, #102647 54%, #050816 100%);
}

.tfp-ecosystem-card--games {
	background:
		radial-gradient(circle at 82% 10%, rgba(245, 158, 11, 0.24), transparent 10rem),
		linear-gradient(145deg, #071332 0%, #13215f 54%, #050816 100%);
}

.tfp-ecosystem-card__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 28px;
}

.tfp-ecosystem-card__icon {
	display: grid;
	place-items: center;
	width: 54px;
	height: 54px;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	font-size: 26px;
}

.tfp-ecosystem-card__badge {
	display: inline-flex;
	align-items: center;
	min-height: 28px;
	padding: 0 11px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.13);
	color: #c7f9ff;
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.tfp-ecosystem-card h3 {
	margin: 0 0 12px;
	font-size: clamp(26px, 3vw, 38px);
	line-height: 0.95;
	letter-spacing: -0.055em;
	font-weight: 950;
	color: #fff;
}

.tfp-ecosystem-card p {
	max-width: 460px;
	margin: 0 0 18px;
	color: rgba(239, 246, 255, 0.78);
	font-size: 14px;
	line-height: 1.55;
	font-weight: 650;
}

.tfp-ecosystem-card ul {
	display: grid;
	gap: 8px;
	margin: 0 0 24px;
	padding: 0;
	list-style: none;
}

.tfp-ecosystem-card li {
	display: flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, 0.88);
	font-size: 13px;
	font-weight: 800;
}

.tfp-ecosystem-card li::before {
	content: '';
	width: 7px;
	height: 7px;
	border-radius: 999px;
	background: linear-gradient(135deg, #22d3ee, #a855f7);
	box-shadow: 0 0 14px rgba(34, 211, 238, 0.75);
	flex: 0 0 auto;
}

.tfp-ecosystem-card a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 42px;
	padding: 0 16px;
	border-radius: 999px;
	background: linear-gradient(135deg, #2563eb 0%, #16c7d4 100%);
	box-shadow: 0 18px 42px rgba(37, 99, 235, 0.32);
	color: #fff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 950;
}

.tfp-ecosystem-card a::after {
	content: '›';
	font-size: 22px;
	line-height: 1;
}

.tfp-ecosystem-mini-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-top: 18px;
}

.tfp-ecosystem-mini {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 92px;
	padding: 15px;
	border-radius: 22px;
	border: 1px solid rgba(203, 213, 225, 0.72);
	background: rgba(255, 255, 255, 0.78);
	box-shadow: 0 18px 48px rgba(15, 23, 42, 0.07);
	text-decoration: none;
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tfp-ecosystem-mini:hover {
	transform: translateY(-3px);
	border-color: rgba(37, 99, 235, 0.24);
	box-shadow: 0 24px 70px rgba(15, 23, 42, 0.11);
}

.tfp-ecosystem-mini__icon {
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border-radius: 15px;
	background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(236, 72, 153, 0.12));
	font-size: 21px;
	flex: 0 0 auto;
}

.tfp-ecosystem-mini span:last-child {
	display: grid;
	gap: 3px;
}

.tfp-ecosystem-mini strong {
	color: #0f1f42;
	font-size: 15px;
	line-height: 1.05;
	letter-spacing: -0.025em;
	font-weight: 950;
}

.tfp-ecosystem-mini small {
	color: #64748b;
	font-size: 12px;
	line-height: 1.25;
	font-weight: 750;
}

@media (max-width: 1100px) {
	.tfp-ecosystem-showcase {
		grid-template-columns: 1fr;
	}

	.tfp-ecosystem-card,
	.tfp-ecosystem-card--judge {
		grid-row: auto;
		min-height: 0;
	}

	.tfp-ecosystem-mini-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 700px) {
	.tfp-home-highlight {
		padding: 42px 0 52px;
	}

	.tfp-home-highlight__head {
		margin-bottom: 22px;
		text-align: left;
	}

	.tfp-home-highlight__head h2 {
		font-size: 31px;
	}

	.tfp-home-highlight__head p {
		font-size: 14px;
	}

	.tfp-ecosystem-showcase {
		gap: 12px;
	}

	.tfp-ecosystem-card {
		padding: 19px;
		border-radius: 24px;
	}

	.tfp-ecosystem-card__top {
		margin-bottom: 18px;
	}

	.tfp-ecosystem-card__icon {
		width: 46px;
		height: 46px;
		border-radius: 16px;
		font-size: 22px;
	}

	.tfp-ecosystem-card h3 {
		font-size: 28px;
	}

	.tfp-ecosystem-card p,
	.tfp-ecosystem-card li {
		font-size: 12px;
	}

	.tfp-ecosystem-card a {
		width: 100%;
	}

	.tfp-ecosystem-mini-grid {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.tfp-ecosystem-mini {
		min-height: 74px;
		padding: 12px;
		border-radius: 18px;
	}
}

/* =========================================================
   TFP CLEAN HOME HERO — 30.06.2026
   Jeden czysty zestaw styli dla hero. Stare reguły hero-product,
   tfp-network i hotfixy zostały usunięte z tego pliku.
   ========================================================= */

body[data-page='home'] .hero.hero-product.hero-product--network {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 720px;
    padding: clamp(64px, 7vw, 92px) 0 56px;
    color: #fff;
    background:
        radial-gradient(circle at 20% 10%, rgba(124, 58, 237, .36), transparent 28%),
        radial-gradient(circle at 78% 70%, rgba(34, 211, 238, .34), transparent 34%),
        linear-gradient(120deg, #18206f 0%, #0f3d95 46%, #0ea5d8 100%);
}

body[data-page='home'] .hero-product__ambient,
body[data-page='home'] .hero-product__orb {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}

body[data-page='home'] .hero-product__ambient {
    background:
        radial-gradient(circle at 10% 50%, rgba(18, 24, 78, .40), transparent 38%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .02));
}

body[data-page='home'] .hero-product__orb {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .10);
}

body[data-page='home'] .hero-product__orb--one {
    right: -120px;
    bottom: -150px;
}

body[data-page='home'] .hero-product__orb--two {
    left: 3%;
    top: 10%;
    opacity: .28;
}

body[data-page='home'] .container.hero-product__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .9fr);
    gap: clamp(28px, 4vw, 62px);
    align-items: center;
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

body[data-page='home'] .hero-product__content {
    max-width: 700px;
}

body[data-page='home'] .hero-product__eyebrow-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 9px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

body[data-page='home'] .hero-product__eyebrow,
body[data-page='home'] .hero-product__chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    font-size: 12px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: .02em;
    white-space: nowrap;
}

body[data-page='home'] .hero-product__chip {
    padding: 0 13px;
    color: #071129;
    border-radius: 999px;
    background: #fff;
}

body[data-page='home'] .hero-product__status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: max-content;
    max-width: 100%;
    padding: 10px 16px;
    margin-bottom: 22px;
    color: rgba(255, 255, 255, .96);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 900;
    border-radius: 999px;
    background: rgba(8, 15, 44, .62);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

body[data-page='home'] .hero-product__status-dot {
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #54ff21;
    box-shadow: 0 0 18px rgba(84, 255, 33, .85);
}

body[data-page='home'] .hero-product__title {
    max-width: 740px;
    margin: 0 0 22px;
    font-family: var(--tfp-font-sans, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif);
    font-size: clamp(54px, 4.45vw, 76px);
    line-height: .98;
    letter-spacing: -0.024em;
    word-spacing: .045em;
    font-weight: 950;
    text-wrap: balance;
}

body[data-page='home'] .hero-product__title span {
    display: inline;
    color: #39e7ec;
    background: linear-gradient(90deg, #27d6ff 0%, #37f279 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.012em;
    word-spacing: .055em;
}

body[data-page='home'] .hero-product__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 500px);
    margin: 0;
}

body[data-page='home'] .hero-product__actions .btn {
    min-height: 58px;
    justify-content: center;
    border-radius: 17px;
    font-size: 16px;
    font-weight: 950;
    letter-spacing: -0.01em;
}

body[data-page='home'] .hero-product__play-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 500px);
    margin: 15px 0 0;
    color: #22d3ee;
    font-size: 16px;
    font-weight: 950;
    text-align: center;
    text-decoration: none;
    letter-spacing: -0.01em;
}

body[data-page='home'] .hero-product__play-link span {
    margin-left: 7px;
}

body[data-page='home'] .hero-product__visual {
    position: relative;
    min-height: 450px;
    display: grid;
    place-items: center;
}

body[data-page='home'] .tfp-network {
    position: relative;
    width: min(430px, 100%);
    aspect-ratio: 1;
    margin: 0 auto;
}

body[data-page='home'] .tfp-network__halo,
body[data-page='home'] .tfp-network__lines {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}

body[data-page='home'] .tfp-network__halo--outer {
    border: 1px solid rgba(34, 211, 238, .28);
    box-shadow: 0 0 50px rgba(34, 211, 238, .18);
}

body[data-page='home'] .tfp-network__halo--inner {
    inset: 62px;
    background: radial-gradient(circle, rgba(34, 211, 238, .18), transparent 70%);
    border: 1px solid rgba(34, 211, 238, .16);
}

body[data-page='home'] .tfp-network__lines {
    width: 100%;
    height: 100%;
    overflow: visible;
}

body[data-page='home'] .tfp-network__lines path,
body[data-page='home'] .tfp-network__lines circle {
    stroke: rgba(34, 211, 238, .72);
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
    filter: drop-shadow(0 0 5px rgba(34, 211, 238, .42));
}

body[data-page='home'] .tfp-network__center {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 118px;
    height: 118px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, .44);
    background:
        radial-gradient(circle, rgba(34, 211, 238, .18), transparent 66%),
        rgba(7, 16, 46, .84);
    box-shadow:
        0 0 0 9px rgba(34, 211, 238, .055),
        0 0 34px rgba(34, 211, 238, .28),
        inset 0 1px 0 rgba(255, 255, 255, .12);
}

body[data-page='home'] .tfp-network__ball {
    position: absolute;
    inset: 11px;
    display: block;
    overflow: hidden;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 24%, rgba(255,255,255,.58) 0 10%, transparent 26%),
        radial-gradient(circle at 34% 28%, #f4ff8a 0 18%, #dff153 38%, #bdd832 68%, #99ba20 100%);
    box-shadow:
        inset 8px 8px 13px rgba(255, 255, 255, .25),
        inset -12px -16px 20px rgba(58, 77, 13, .20);
}

body[data-page='home'] .tfp-network__ball::before,
body[data-page='home'] .tfp-network__ball::after {
    content: "";
    position: absolute;
    top: -14%;
    width: 64%;
    height: 128%;
    border-radius: 50%;
    pointer-events: none;
    filter: drop-shadow(0 1px 0 rgba(60, 80, 12, .18));
}

body[data-page='home'] .tfp-network__ball::before {
    left: -30%;
    border-right: 8px solid rgba(255, 255, 245, .98);
    transform: rotate(8deg);
}

body[data-page='home'] .tfp-network__ball::after {
    right: -30%;
    border-left: 8px solid rgba(255, 255, 245, .98);
    transform: rotate(8deg);
}

body[data-page='home'] .tfp-network__ball i {
    position: absolute;
    inset: 0;
    display: block;
    border-radius: inherit;
    background:
        repeating-radial-gradient(circle at 45% 40%, rgba(255,255,255,.08) 0 1px, transparent 1px 5px);
    opacity: .35;
}

body[data-page='home'] .tfp-network__node {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 112px;
    min-height: 82px;
    padding: 12px 10px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(34, 211, 238, .38);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(16, 22, 72, .92), rgba(7, 13, 42, .88));
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 38px rgba(0,0,0,.22);
}

body[data-page='home'] .tfp-network__node strong {
    font-size: 12px;
    line-height: 1.12;
    font-weight: 950;
}

body[data-page='home'] .tfp-network__icon {
    display: grid;
    place-items: center;
    min-width: 34px;
    height: 34px;
    padding: 0 6px;
    color: #22d3ee;
    font-size: 17px;
    font-weight: 950;
    border-radius: 11px;
    background: rgba(37, 99, 235, .26);
}

body[data-page='home'] .tfp-network__node--top {
    left: 50%;
    top: -4px;
    transform: translateX(-50%);
}

body[data-page='home'] .tfp-network__node--left {
    left: 0;
    top: 30%;
}

body[data-page='home'] .tfp-network__node--right {
    right: 0;
    top: 30%;
}

body[data-page='home'] .tfp-network__node--bottom-left {
    left: 0;
    top: 58%;
}

body[data-page='home'] .tfp-network__node--bottom-right {
    right: 0;
    top: 58%;
}

body[data-page='home'] .tfp-network__node--bottom {
    left: 50%;
    bottom: -4px;
    transform: translateX(-50%);
}

body[data-page='home'] .hero-product__court {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: -1;
    width: min(760px, 70vw);
    height: 150px;
    transform: translateX(-50%);
    opacity: .28;
    background:
        linear-gradient(rgba(34,211,238,.28), rgba(34,211,238,.08)),
        linear-gradient(90deg, transparent 49%, rgba(255,255,255,.25) 50%, transparent 51%);
    border: 1px solid rgba(34, 211, 238, .24);
    transform-origin: bottom center;
    clip-path: polygon(10% 18%, 90% 18%, 100% 100%, 0 100%);
}

body[data-page='home'] .hero-product__net,
body[data-page='home'] .hero-product__court span {
    display: none;
}

body[data-page='home'] .hero-product__bottom {
    position: relative;
    z-index: 3;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    width: min(100%, 960px);
    margin: 24px auto 0;
    gap: 16px;
}

body[data-page='home'] .hero-product__feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: min(100%, 560px);
    margin: 0 auto;
}

body[data-page='home'] .hero-product__feature-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    border-radius: 14px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.12);
}

body[data-page='home'] .hero-product__metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(112px, 1fr));
    justify-content: center;
    justify-items: center;
    gap: 14px;
    width: min(100%, 540px);
    margin: 0 auto;
}

body[data-page='home'] .hero-product__metrics div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    min-height: 112px;
    padding: 14px 12px;
    text-align: center;
    border-radius: 18px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}

body[data-page='home'] .hero-product__metric-icon {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(37, 99, 235, .20);
}

body[data-page='home'] .hero-product__metrics strong {
    display: block;
    font-size: 34px;
    line-height: .92;
    font-weight: 950;
    letter-spacing: -0.025em;
}

body[data-page='home'] .hero-product__metrics div > span:last-child {
    display: block;
    font-size: 12px;
    line-height: 1.1;
    font-weight: 800;
    opacity: .92;
}

@media (max-width: 980px) {
    body[data-page='home'] .container.hero-product__inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    body[data-page='home'] .hero-product__content {
        max-width: 720px;
        margin: 0 auto;
    }

    body[data-page='home'] .hero-product__eyebrow-wrap,
    body[data-page='home'] .hero-product__status,
    body[data-page='home'] .hero-product__actions,
    body[data-page='home'] .hero-product__play-link {
        margin-left: auto;
        margin-right: auto;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 390px;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .hero.hero-product.hero-product--network {
        min-height: auto;
        padding: 22px 0 30px;
    }

    body[data-page='home'] .container.hero-product__inner {
        width: min(390px, calc(100% - 24px));
        gap: 18px;
    }

    body[data-page='home'] .hero-product__eyebrow-wrap {
        margin-bottom: 10px;
        transform: scale(.88);
        transform-origin: center;
    }

    body[data-page='home'] .hero-product__status {
        justify-content: center;
        padding: 8px 12px;
        margin-bottom: 14px;
        font-size: 11px;
        white-space: normal;
    }

    body[data-page='home'] .hero-product__title {
        max-width: 350px;
        margin: 0 auto 16px;
        font-size: clamp(32px, 9.2vw, 38px);
        line-height: 1.06;
        letter-spacing: -0.018em;
        word-spacing: .04em;
    }

    body[data-page='home'] .hero-product__title span {
        letter-spacing: -0.01em;
        word-spacing: .05em;
    }

    body[data-page='home'] .hero-product__actions {
        grid-template-columns: 1fr;
        gap: 10px;
        width: min(100%, 320px);
    }

    body[data-page='home'] .hero-product__actions .btn {
        min-height: 48px;
        border-radius: 15px;
        font-size: 14px;
    }

    body[data-page='home'] .hero-product__play-link {
        width: min(100%, 320px);
        margin-top: 10px;
        font-size: 14px;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 314px;
    }

    body[data-page='home'] .tfp-network {
        width: min(318px, 100%);
    }

    body[data-page='home'] .tfp-network__center {
        width: 88px;
        height: 88px;
    }

    body[data-page='home'] .tfp-network__ball {
        inset: 8px;
    }

    body[data-page='home'] .tfp-network__ball::before,
    body[data-page='home'] .tfp-network__ball::after {
        border-width: 6px;
    }

    body[data-page='home'] .tfp-network__halo--inner {
        inset: 46px;
    }

    body[data-page='home'] .tfp-network__node {
        width: 76px;
        min-height: 58px;
        gap: 4px;
        padding: 8px 6px;
        border-radius: 13px;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 9.5px;
        line-height: 1.05;
    }

    body[data-page='home'] .tfp-network__icon {
        min-width: 26px;
        height: 26px;
        font-size: 12px;
        border-radius: 8px;
    }

    body[data-page='home'] .hero-product__bottom {
        width: min(100%, 355px);
        margin: 4px auto 0;
        gap: 0;
    }

    body[data-page='home'] .hero-product__feature-pills {
        display: none;
    }

    body[data-page='home'] .hero-product__metrics {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 7px;
        width: 100%;
        max-width: 355px;
        margin: 0 auto;
    }

    body[data-page='home'] .hero-product__metrics div {
        min-height: 66px;
        padding: 7px 4px;
        border-radius: 13px;
        gap: 3px;
    }

    body[data-page='home'] .hero-product__metric-icon {
        width: 22px;
        height: 22px;
        font-size: 11px;
        border-radius: 8px;
    }

    body[data-page='home'] .hero-product__metrics strong {
        font-size: clamp(20px, 6vw, 25px);
        line-height: .92;
        letter-spacing: -0.02em;
    }

    body[data-page='home'] .hero-product__metrics div > span:last-child {
        font-size: 9px;
        line-height: 1;
    }

    body[data-page='home'] .hero-product__court {
        display: none;
    }
}

@media (max-width: 390px) {
    body[data-page='home'] .container.hero-product__inner {
        width: calc(100% - 18px);
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 300px;
    }

    body[data-page='home'] .tfp-network {
        width: min(300px, 100%);
    }

    body[data-page='home'] .hero-product__bottom {
        width: min(100%, 342px);
    }

    body[data-page='home'] .hero-product__metrics {
        max-width: 342px;
        gap: 6px;
    }

    body[data-page='home'] .hero-product__metrics div {
        min-height: 62px;
    }

    body[data-page='home'] .hero-product__metrics strong {
        font-size: 20px;
    }

    body[data-page='home'] .hero-product__metrics div > span:last-child {
        font-size: 8.5px;
    }
}

/* =========================================================
   TFP HERO CLEANUP — 30.06.2026
   Usunięcie rombu/kortu i linków nad statystykami.
   ========================================================= */
body[data-page='home'] .hero-product__court,
body[data-page='home'] .hero-product__net,
body[data-page='home'] .hero-product__court-line,
body[data-page='home'] .hero-product__feature-pills {
    display: none !important;
}

body[data-page='home'] .hero-product__bottom {
    gap: 0 !important;
    margin-top: 26px !important;
}

body[data-page='home'] .hero-product__metrics {
    margin-top: 0 !important;
}

@media (max-width: 720px) {
    body[data-page='home'] .hero-product__bottom {
        margin-top: 8px !important;
    }
}

/* =========================================================
   TFP RESTORE ORIGINAL PWA INSTALL — 30.06.2026
   Oryginalny badge TFP APP działa jako instalacja PWA.
   ========================================================= */
body[data-page='home'] .hero-product__eyebrow-wrap {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    width: max-content !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 0 14px !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}

body[data-page='home'] .hero-product__badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    min-height: 36px !important;
    padding: 6px 8px 6px 12px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255, 255, 255, .18) !important;
    background: rgba(255,255,255,.10) !important;
    color: #fff !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.14) !important;
}

body[data-page='home'] .hero-product__badge > span,
body[data-page='home'] .hero-product__badge > strong {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    line-height: 1 !important;
}

body[data-page='home'] .hero-product__badge > span {
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .02em !important;
    color: rgba(255,255,255,.94) !important;
}

body[data-page='home'] .hero-product__badge > strong {
    min-height: 25px !important;
    padding: 0 11px !important;
    border-radius: 999px !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    letter-spacing: .01em !important;
    color: #071129 !important;
    background: rgba(255,255,255,.96) !important;
}

body[data-page='home'] .hero-product__badge.is-install-ready {
    cursor: pointer !important;
    border-color: rgba(34,211,238,.48) !important;
    background: rgba(34,211,238,.12) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 0 24px rgba(34,211,238,.16) !important;
}

body[data-page='home'] .hero-install-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 25px !important;
    padding: 0 11px !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #071129 !important;
    background: rgba(255,255,255,.96) !important;
    font: inherit !important;
    font-size: 11px !important;
    font-weight: 950 !important;
    line-height: 1 !important;
    cursor: pointer !important;
}

body[data-page='home'] .hero-install-btn[hidden] {
    display: none !important;
}

body[data-page='home'] .hero-product__pulse {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: max-content !important;
    max-width: 430px !important;
    padding: 8px 13px !important;
    border-radius: 999px !important;
    color: rgba(255,255,255,.92) !important;
    background: rgba(7,16,46,.46) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    font-size: 11.5px !important;
    line-height: 1.15 !important;
    font-weight: 850 !important;
}

body[data-page='home'] .hero-product__pulse span {
    width: 9px !important;
    height: 9px !important;
    flex: 0 0 9px !important;
    border-radius: 50% !important;
    background: #54ff21 !important;
    box-shadow: 0 0 12px rgba(84,255,33,.72) !important;
}

@media (max-width: 980px) {
    body[data-page='home'] .hero-product__eyebrow-wrap {
        justify-content: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .hero-product__eyebrow-wrap {
        flex-direction: column !important;
        gap: 8px !important;
        margin-bottom: 11px !important;
    }

    body[data-page='home'] .hero-product__pulse {
        justify-content: center !important;
        width: min(100%, 320px) !important;
        max-width: 320px !important;
        padding: 7px 11px !important;
        text-align: center !important;
        font-size: 10px !important;
    }
}

/* =========================================================
   HOME HERO NETWORK — clickable premium modules
   ========================================================= */

body[data-page='home'] .hero-product__visual {
    min-height: 492px;
}

body[data-page='home'] .tfp-network {
    width: min(520px, 100%);
    filter: drop-shadow(0 32px 64px rgba(0, 0, 0, .16));
}

body[data-page='home'] .tfp-network__halo--outer {
    border-color: rgba(34, 211, 238, .42);
    box-shadow:
        0 0 0 1px rgba(34, 211, 238, .10),
        0 0 54px rgba(34, 211, 238, .24),
        inset 0 0 42px rgba(34, 211, 238, .08);
}

body[data-page='home'] .tfp-network__halo--inner {
    inset: 82px;
    background:
        radial-gradient(circle, rgba(34, 211, 238, .22), transparent 64%),
        radial-gradient(circle, rgba(37, 99, 235, .16), transparent 72%);
    border-color: rgba(34, 211, 238, .22);
}

body[data-page='home'] .tfp-network__center {
    width: 134px;
    height: 134px;
    border-color: rgba(34, 211, 238, .62);
    background:
        radial-gradient(circle, rgba(34, 211, 238, .20), transparent 62%),
        rgba(6, 18, 54, .92);
    box-shadow:
        0 0 0 10px rgba(34, 211, 238, .07),
        0 0 0 22px rgba(34, 211, 238, .035),
        0 0 46px rgba(34, 211, 238, .40),
        inset 0 1px 0 rgba(255, 255, 255, .16);
}

body[data-page='home'] .tfp-network__center::before {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px solid rgba(34, 211, 238, .18);
    animation: tfpNetworkPulse 2.8s ease-in-out infinite;
}

body[data-page='home'] .tfp-network__ball {
    inset: 13px;
    box-shadow:
        inset 10px 10px 16px rgba(255, 255, 255, .28),
        inset -16px -18px 24px rgba(58, 77, 13, .20),
        0 16px 34px rgba(0, 0, 0, .22);
}

body[data-page='home'] .tfp-network__node {
    width: 132px;
    min-height: 92px;
    gap: 7px;
    padding: 13px 12px 12px;
    border: 1px solid rgba(91, 221, 255, .70);
    border-radius: 22px;
    background:
        linear-gradient(180deg, rgba(18, 35, 88, .96), rgba(7, 18, 54, .92));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.16),
        0 0 0 1px rgba(34, 211, 238, .08),
        0 18px 38px rgba(0,0,0,.26),
        0 0 28px rgba(34, 211, 238, .12);
    cursor: pointer;
    transition:
        transform .18s ease,
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

body[data-page='home'] .tfp-network__node::before {
    content: "";
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(34, 211, 238, .70), rgba(37, 99, 235, .20), rgba(54, 245, 123, .55));
    opacity: .18;
    transition: opacity .18s ease;
}

body[data-page='home'] .tfp-network__node::after {
    content: "";
    position: absolute;
    inset: auto 18px -9px;
    height: 13px;
    border-radius: 50%;
    background: rgba(34, 211, 238, .30);
    filter: blur(11px);
    opacity: .70;
}

body[data-page='home'] .tfp-network__node:hover,
body[data-page='home'] .tfp-network__node:focus-visible {
    border-color: rgba(139, 246, 255, .95);
    background:
        linear-gradient(180deg, rgba(22, 48, 120, .98), rgba(8, 23, 65, .96));
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.22),
        0 0 0 1px rgba(34, 211, 238, .20),
        0 22px 48px rgba(0,0,0,.30),
        0 0 34px rgba(34, 211, 238, .34);
}

body[data-page='home'] .tfp-network__node--top:hover,
body[data-page='home'] .tfp-network__node--top:focus-visible,
body[data-page='home'] .tfp-network__node--bottom:hover,
body[data-page='home'] .tfp-network__node--bottom:focus-visible {
    transform: translateX(-50%) translateY(-5px);
}

body[data-page='home'] .tfp-network__node--left:hover,
body[data-page='home'] .tfp-network__node--right:hover,
body[data-page='home'] .tfp-network__node--bottom-left:hover,
body[data-page='home'] .tfp-network__node--bottom-right:hover,
body[data-page='home'] .tfp-network__node--left:focus-visible,
body[data-page='home'] .tfp-network__node--right:focus-visible,
body[data-page='home'] .tfp-network__node--bottom-left:focus-visible,
body[data-page='home'] .tfp-network__node--bottom-right:focus-visible {
    transform: translateY(-5px);
}

body[data-page='home'] .tfp-network__node:hover::before,
body[data-page='home'] .tfp-network__node:focus-visible::before {
    opacity: .44;
}

body[data-page='home'] .tfp-network__icon {
    min-width: 38px;
    height: 38px;
    color: #22d3ee;
    font-size: 18px;
    border-radius: 13px;
    background: rgba(37, 99, 235, .30);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.12),
        0 10px 20px rgba(37, 99, 235, .20);
}

body[data-page='home'] .tfp-network__node strong {
    font-size: 13px;
    line-height: 1.12;
    letter-spacing: -.01em;
}

body[data-page='home'] .tfp-network__node em {
    position: absolute;
    right: 12px;
    top: 50%;
    color: rgba(255,255,255,.86);
    font-size: 22px;
    line-height: 1;
    font-style: normal;
    font-weight: 900;
    transform: translateY(-50%);
    opacity: .88;
    transition: transform .18s ease, opacity .18s ease;
}

body[data-page='home'] .tfp-network__node:hover em,
body[data-page='home'] .tfp-network__node:focus-visible em {
    opacity: 1;
    transform: translate(3px, -50%);
}

body[data-page='home'] .tfp-network__node--top {
    top: -16px;
}

body[data-page='home'] .tfp-network__node--left {
    left: -4px;
    top: 28%;
}

body[data-page='home'] .tfp-network__node--right {
    right: -4px;
    top: 28%;
}

body[data-page='home'] .tfp-network__node--bottom-left {
    left: -4px;
    top: 57%;
}

body[data-page='home'] .tfp-network__node--bottom-right {
    right: -4px;
    top: 57%;
}

body[data-page='home'] .tfp-network__node--bottom {
    bottom: -16px;
}

body[data-page='home'] .tfp-network__hint {
    position: absolute;
    left: 50%;
    bottom: -64px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #22d3ee;
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
    transform: translateX(-50%);
    text-shadow: 0 0 22px rgba(34, 211, 238, .35);
}

body[data-page='home'] .tfp-network__hint span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid rgba(34, 211, 238, .36);
    border-radius: 999px;
    background: rgba(34, 211, 238, .10);
}

@keyframes tfpNetworkPulse {
    0%, 100% {
        opacity: .42;
        transform: scale(.96);
    }

    50% {
        opacity: .92;
        transform: scale(1.04);
    }
}

@media (max-width: 980px) {
    body[data-page='home'] .hero-product__visual {
        min-height: 430px;
    }

    body[data-page='home'] .tfp-network {
        width: min(420px, 100%);
    }

    body[data-page='home'] .tfp-network__node {
        width: 112px;
        min-height: 78px;
        border-radius: 18px;
    }

    body[data-page='home'] .tfp-network__icon {
        min-width: 32px;
        height: 32px;
        font-size: 15px;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 11px;
    }

    body[data-page='home'] .tfp-network__center {
        width: 112px;
        height: 112px;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .hero-product__visual {
        min-height: 320px;
        margin-top: 14px;
    }

    body[data-page='home'] .tfp-network {
        width: min(300px, 100%);
    }

    body[data-page='home'] .tfp-network__center {
        width: 82px;
        height: 82px;
    }

    body[data-page='home'] .tfp-network__node {
        width: 86px;
        min-height: 62px;
        gap: 3px;
        padding: 8px 7px;
        border-radius: 15px;
    }

    body[data-page='home'] .tfp-network__icon {
        min-width: 24px;
        height: 24px;
        font-size: 11px;
        border-radius: 9px;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 9px;
        line-height: 1.05;
    }

    body[data-page='home'] .tfp-network__node em {
        display: none;
    }

    body[data-page='home'] .tfp-network__node--top {
        top: -8px;
    }

    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--bottom-left {
        left: -2px;
    }

    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-right {
        right: -2px;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        bottom: -8px;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -42px;
        font-size: 11px;
    }

    body[data-page='home'] .tfp-network__hint span {
        width: 22px;
        height: 22px;
    }
}

/* =========================================================
   HOME HERO NETWORK — mobile hint position fix
   ========================================================= */

@media (max-width: 720px) {
    body[data-page='home'] .tfp-network__hint {
        bottom: -28px;
        font-size: 10px;
        gap: 6px;
        opacity: .92;
    }

    body[data-page='home'] .tfp-network__hint span {
        width: 19px;
        height: 19px;
        font-size: 10px;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 292px;
        margin-bottom: 18px;
    }

    body[data-page='home'] .hero-product__metrics {
        margin-top: 20px;
    }
}

@media (max-width: 420px) {
    body[data-page='home'] .tfp-network__hint {
        bottom: -24px;
        font-size: 9px;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 282px;
        margin-bottom: 20px;
    }

    body[data-page='home'] .hero-product__metrics {
        margin-top: 22px;
    }
}


/* SAFE PATCH — premium szybki dostęp na stronie głównej */
@media (min-width: 981px) {
    body[data-page='home'] .hero-product.hero-product--network {
        min-height: 760px !important;
        padding-top: clamp(74px, 7vw, 108px) !important;
        background:
            radial-gradient(circle at 16% 16%, rgba(34, 211, 238, .10), transparent 28%),
            radial-gradient(circle at 75% 52%, rgba(14, 165, 233, .26), transparent 36%),
            linear-gradient(120deg, #06184a 0%, #082d76 48%, #047d9f 100%) !important;
    }

    body[data-page='home'] .container.hero-product__inner {
        grid-template-columns: minmax(0, .92fr) minmax(540px, 1fr) !important;
        gap: clamp(34px, 5vw, 76px) !important;
        align-items: center !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 560px !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network {
        width: min(590px, 100%) !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network__halo--outer {
        border-color: rgba(34, 211, 238, .42) !important;
        box-shadow: 0 0 68px rgba(34, 211, 238, .22) !important;
    }

    body[data-page='home'] .tfp-network__halo--inner {
        inset: 82px !important;
        background: radial-gradient(circle, rgba(34, 211, 238, .22), transparent 72%) !important;
    }

    body[data-page='home'] .tfp-network__lines path,
    body[data-page='home'] .tfp-network__lines circle {
        stroke-width: 2.4px !important;
        stroke: rgba(34, 211, 238, .86) !important;
        filter: drop-shadow(0 0 8px rgba(34, 211, 238, .65)) !important;
    }

    body[data-page='home'] .tfp-network__center {
        width: 132px !important;
        height: 132px !important;
        box-shadow:
            0 0 0 12px rgba(34, 211, 238, .07),
            0 0 44px rgba(34, 211, 238, .36),
            inset 0 1px 0 rgba(255, 255, 255, .16) !important;
    }

    body[data-page='home'] .tfp-network__node {
        width: 232px !important;
        min-height: 116px !important;
        padding: 18px 18px !important;
        display: grid !important;
        grid-template-columns: 58px 1fr 28px !important;
        gap: 14px !important;
        align-items: center !important;
        justify-content: stretch !important;
        text-align: left !important;
        border-radius: 24px !important;
        border-width: 2px !important;
        color: #fff !important;
        background: linear-gradient(135deg, rgba(24, 77, 212, .98), rgba(18, 33, 103, .96)) !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.22),
            0 22px 48px rgba(0, 0, 0, .26),
            0 0 34px rgba(34, 211, 238, .18) !important;
        transition: transform .18s ease, box-shadow .18s ease, filter .18s ease !important;
    }

    body[data-page='home'] .tfp-network__node:hover {
        transform: translateY(-4px) scale(1.02) !important;
        filter: saturate(1.12) brightness(1.04) !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 54px !important;
        height: 54px !important;
        min-width: 54px !important;
        padding: 0 !important;
        border-radius: 18px !important;
        color: #fff !important;
        background: rgba(255,255,255,.16) !important;
        border: 1px solid rgba(255,255,255,.22) !important;
        font-size: 23px !important;
        line-height: 1 !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.20) !important;
    }

    body[data-page='home'] .tfp-network__copy {
        min-width: 0 !important;
        display: block !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        display: block !important;
        color: #fff !important;
        font-size: 21px !important;
        line-height: 1.05 !important;
        font-weight: 950 !important;
        letter-spacing: -0.035em !important;
        text-shadow: 0 3px 14px rgba(0,0,0,.22) !important;
    }

    body[data-page='home'] .tfp-network__node small {
        display: block !important;
        margin-top: 8px !important;
        color: rgba(255,255,255,.82) !important;
        font-size: 12px !important;
        line-height: 1.35 !important;
        font-weight: 750 !important;
        letter-spacing: -0.01em !important;
    }

    body[data-page='home'] .tfp-network__node em {
        width: 28px !important;
        height: 28px !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.18) !important;
        color: #fff !important;
        font-size: 24px !important;
        font-style: normal !important;
        font-weight: 950 !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        left: 50% !important;
        top: -24px !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(135deg, #6346ff 0%, #2521b8 100%) !important;
        border-color: rgba(167, 139, 250, .88) !important;
        box-shadow: 0 0 32px rgba(139, 92, 246, .45), 0 22px 48px rgba(0,0,0,.26) !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: -56px !important;
        top: 27% !important;
        background: linear-gradient(135deg, #1677ff 0%, #1232a0 100%) !important;
        border-color: rgba(56, 189, 248, .90) !important;
        box-shadow: 0 0 34px rgba(56, 189, 248, .42), 0 22px 48px rgba(0,0,0,.26) !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        right: -70px !important;
        top: 27% !important;
        background: linear-gradient(135deg, #ff305f 0%, #c61134 62%, #ff7a18 100%) !important;
        border-color: rgba(255, 133, 162, .96) !important;
        box-shadow: 0 0 40px rgba(255, 48, 95, .62), 0 22px 48px rgba(0,0,0,.30) !important;
    }

    body[data-page='home'] .tfp-network__node--right .tfp-network__icon {
        font-size: 17px !important;
        font-weight: 950 !important;
        background: rgba(255,255,255,.18) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: -58px !important;
        top: 56% !important;
        background: linear-gradient(135deg, #0fd78b 0%, #00674f 100%) !important;
        border-color: rgba(52, 244, 176, .92) !important;
        box-shadow: 0 0 34px rgba(16, 185, 129, .46), 0 22px 48px rgba(0,0,0,.26) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        right: -74px !important;
        top: 56% !important;
        background: linear-gradient(135deg, #ff9f1c 0%, #b94900 100%) !important;
        border-color: rgba(251, 191, 36, .95) !important;
        box-shadow: 0 0 34px rgba(245, 158, 11, .50), 0 22px 48px rgba(0,0,0,.26) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        left: 50% !important;
        bottom: -42px !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(135deg, #a63cff 0%, #4922c4 100%) !important;
        border-color: rgba(216, 180, 254, .92) !important;
        box-shadow: 0 0 34px rgba(168, 85, 247, .48), 0 22px 48px rgba(0,0,0,.26) !important;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -90px !important;
        color: #22d3ee !important;
        font-size: 17px !important;
        font-weight: 950 !important;
        text-shadow: 0 0 18px rgba(34,211,238,.42) !important;
    }
}

@media (max-width: 980px) {
    body[data-page='home'] .tfp-network__node {
        width: 132px !important;
        min-height: 94px !important;
        padding: 12px 10px !important;
        display: flex !important;
        text-align: center !important;
        align-items: center !important;
    }

    body[data-page='home'] .tfp-network__node small {
        display: none !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 13px !important;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .tfp-network {
        width: min(420px, 100%) !important;
    }

    body[data-page='home'] .tfp-network__node {
        width: 116px !important;
        min-height: 78px !important;
        border-radius: 16px !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 15px !important;
    }

    body[data-page='home'] .tfp-network__node em {
        display: none !important;
    }
}


/* SAFE PATCH V2 — szybki dostęp: desktop bez ucinania, mobile bez nachodzenia */
body[data-page='home'] .tfp-network__copy {
    min-width: 0 !important;
}

body[data-page='home'] .tfp-network__node small {
    overflow-wrap: normal !important;
    word-break: normal !important;
}

/* Desktop/tablet szeroki */
@media (min-width: 981px) {
    body[data-page='home'] .container.hero-product__inner {
        width: min(1300px, calc(100% - 48px)) !important;
        grid-template-columns: minmax(430px, .84fr) minmax(640px, 1.16fr) !important;
        gap: clamp(44px, 5vw, 96px) !important;
    }

    body[data-page='home'] .hero-product__content {
        max-width: 620px !important;
    }

    body[data-page='home'] .hero-product__title {
        max-width: 610px !important;
        font-size: clamp(54px, 4.15vw, 72px) !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 610px !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network {
        width: min(660px, 100%) !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network__node {
        width: 235px !important;
        min-height: 108px !important;
        padding: 16px 15px !important;
        grid-template-columns: 52px minmax(0, 1fr) 26px !important;
        gap: 12px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 19px !important;
        line-height: 1.04 !important;
    }

    body[data-page='home'] .tfp-network__node small {
        max-width: 128px !important;
        margin-top: 6px !important;
        font-size: 11px !important;
        line-height: 1.25 !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        top: -28px !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: -42px !important;
        top: 27% !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        right: -44px !important;
        top: 27% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: -42px !important;
        top: 56% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        right: -44px !important;
        top: 56% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        bottom: -46px !important;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -95px !important;
    }
}

/* Tablet i mobile — kafle jako kolorowa siatka, bez absolutnego nakładania */
@media (max-width: 980px) {
    body[data-page='home'] .hero-product__visual {
        min-height: 0 !important;
        display: block !important;
        overflow: visible !important;
        margin-top: 14px !important;
    }

    body[data-page='home'] .tfp-network {
        width: min(520px, 100%) !important;
        min-height: 0 !important;
        aspect-ratio: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 10px !important;
        padding: 82px 0 34px !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network__halo,
    body[data-page='home'] .tfp-network__lines {
        display: none !important;
    }

    body[data-page='home'] .tfp-network__center {
        position: absolute !important;
        left: 50% !important;
        top: 0 !important;
        width: 74px !important;
        height: 74px !important;
        transform: translateX(-50%) !important;
        z-index: 4 !important;
    }

    body[data-page='home'] .tfp-network__ball {
        inset: 8px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        position: relative !important;
        inset: auto !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100% !important;
        min-height: 84px !important;
        padding: 12px 10px !important;
        display: grid !important;
        grid-template-columns: 36px minmax(0, 1fr) 18px !important;
        gap: 9px !important;
        align-items: center !important;
        justify-content: stretch !important;
        text-align: left !important;
        border-radius: 18px !important;
        border: 1.5px solid rgba(255,255,255,.26) !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 12px 26px rgba(0,0,0,.18) !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        background: linear-gradient(135deg, #6548ff 0%, #2d2abe 100%) !important;
        border-color: rgba(167, 139, 250, .88) !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        background: linear-gradient(135deg, #1677ff 0%, #1436a8 100%) !important;
        border-color: rgba(56, 189, 248, .88) !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        background: linear-gradient(135deg, #ff305f 0%, #bf123d 70%, #ff7a18 100%) !important;
        border-color: rgba(255, 133, 162, .95) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        background: linear-gradient(135deg, #0fd78b 0%, #006a52 100%) !important;
        border-color: rgba(52, 244, 176, .90) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        background: linear-gradient(135deg, #ff9f1c 0%, #b94f00 100%) !important;
        border-color: rgba(251, 191, 36, .92) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        background: linear-gradient(135deg, #a63cff 0%, #4922c4 100%) !important;
        border-color: rgba(216, 180, 254, .90) !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 12px !important;
        padding: 0 !important;
        color: #fff !important;
        background: rgba(255,255,255,.16) !important;
        border: 1px solid rgba(255,255,255,.20) !important;
        font-size: 16px !important;
    }

    body[data-page='home'] .tfp-network__node--right .tfp-network__icon {
        font-size: 12px !important;
        font-weight: 950 !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        display: block !important;
        color: #fff !important;
        font-size: 13px !important;
        line-height: 1.05 !important;
        font-weight: 950 !important;
        letter-spacing: -0.02em !important;
    }

    body[data-page='home'] .tfp-network__node small {
        display: block !important;
        margin-top: 4px !important;
        color: rgba(255,255,255,.78) !important;
        font-size: 9px !important;
        line-height: 1.2 !important;
        font-weight: 750 !important;
    }

    body[data-page='home'] .tfp-network__node em {
        width: 18px !important;
        height: 18px !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.18) !important;
        color: #fff !important;
        font-size: 17px !important;
        font-style: normal !important;
        font-weight: 950 !important;
    }

    body[data-page='home'] .tfp-network__hint {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        grid-column: 1 / -1 !important;
        margin-top: 2px !important;
        text-align: center !important;
        color: #22d3ee !important;
        font-size: 12px !important;
        font-weight: 950 !important;
    }

    body[data-page='home'] .hero-product__metrics {
        margin-top: 6px !important;
    }
}

@media (max-width: 420px) {
    body[data-page='home'] .tfp-network {
        gap: 8px !important;
        padding-top: 76px !important;
    }

    body[data-page='home'] .tfp-network__node {
        grid-template-columns: 30px minmax(0, 1fr) 14px !important;
        min-height: 78px !important;
        padding: 10px 8px !important;
        border-radius: 16px !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        font-size: 13px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 12px !important;
    }

    body[data-page='home'] .tfp-network__node small {
        font-size: 8.5px !important;
    }
}


/* SAFE PATCH V3 — bez przesuwania kafli + mobile jak desktop, bez opisów */
body[data-page='home'] .tfp-network__node:hover,
body[data-page='home'] .tfp-network__node--top:hover,
body[data-page='home'] .tfp-network__node--left:hover,
body[data-page='home'] .tfp-network__node--right:hover,
body[data-page='home'] .tfp-network__node--bottom-left:hover,
body[data-page='home'] .tfp-network__node--bottom-right:hover,
body[data-page='home'] .tfp-network__node--bottom:hover {
    filter: saturate(1.08) brightness(1.04) !important;
}

@media (min-width: 981px) {
    body[data-page='home'] .tfp-network__node:hover {
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__node--top:hover {
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom:hover {
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 980px) {
    body[data-page='home'] .hero-product__visual {
        min-height: 420px !important;
        display: grid !important;
        place-items: center !important;
        margin-top: 14px !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network {
        position: relative !important;
        width: min(360px, 100%) !important;
        min-height: 410px !important;
        aspect-ratio: 1 !important;
        display: block !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network__halo,
    body[data-page='home'] .tfp-network__lines {
        display: block !important;
    }

    body[data-page='home'] .tfp-network__halo--outer {
        inset: 0 !important;
        border-color: rgba(34, 211, 238, .32) !important;
    }

    body[data-page='home'] .tfp-network__halo--inner {
        inset: 58px !important;
    }

    body[data-page='home'] .tfp-network__center {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        z-index: 4 !important;
        width: 74px !important;
        height: 74px !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__ball {
        inset: 8px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        position: absolute !important;
        inset: auto !important;
        width: 112px !important;
        min-height: 70px !important;
        padding: 9px 8px !important;
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto !important;
        gap: 4px 5px !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border-radius: 16px !important;
        border: 1.5px solid rgba(255,255,255,.26) !important;
        box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 10px 24px rgba(0,0,0,.20) !important;
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        left: 50% !important;
        top: 0 !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(135deg, #6548ff 0%, #2d2abe 100%) !important;
        border-color: rgba(167, 139, 250, .88) !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: 0 !important;
        top: 30% !important;
        background: linear-gradient(135deg, #1677ff 0%, #1436a8 100%) !important;
        border-color: rgba(56, 189, 248, .88) !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        right: 0 !important;
        top: 30% !important;
        background: linear-gradient(135deg, #ff305f 0%, #bf123d 70%, #ff7a18 100%) !important;
        border-color: rgba(255, 133, 162, .95) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: 0 !important;
        top: 58% !important;
        background: linear-gradient(135deg, #0fd78b 0%, #006a52 100%) !important;
        border-color: rgba(52, 244, 176, .90) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        right: 0 !important;
        top: 58% !important;
        background: linear-gradient(135deg, #ff9f1c 0%, #b94f00 100%) !important;
        border-color: rgba(251, 191, 36, .92) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        left: 50% !important;
        bottom: 0 !important;
        transform: translateX(-50%) !important;
        background: linear-gradient(135deg, #a63cff 0%, #4922c4 100%) !important;
        border-color: rgba(216, 180, 254, .90) !important;
    }

    body[data-page='home'] .tfp-network__node:hover {
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__node--top:hover,
    body[data-page='home'] .tfp-network__node--bottom:hover {
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__icon {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        border-radius: 11px !important;
        padding: 0 !important;
        color: #fff !important;
        background: rgba(255,255,255,.16) !important;
        border: 1px solid rgba(255,255,255,.20) !important;
        font-size: 14px !important;
    }

    body[data-page='home'] .tfp-network__node--right .tfp-network__icon {
        font-size: 10px !important;
        font-weight: 950 !important;
    }

    body[data-page='home'] .tfp-network__copy {
        grid-column: 1 / 2 !important;
        display: block !important;
        min-width: 0 !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        display: block !important;
        color: #fff !important;
        font-size: 12px !important;
        line-height: 1.05 !important;
        font-weight: 950 !important;
        letter-spacing: -0.02em !important;
        text-align: center !important;
    }

    body[data-page='home'] .tfp-network__node small {
        display: none !important;
    }

    body[data-page='home'] .tfp-network__node em {
        grid-column: 2 / 3 !important;
        width: 18px !important;
        height: 18px !important;
        display: grid !important;
        place-items: center !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,.18) !important;
        color: #fff !important;
        font-size: 17px !important;
        font-style: normal !important;
        font-weight: 950 !important;
    }

    body[data-page='home'] .tfp-network__hint {
        position: absolute !important;
        left: 50% !important;
        bottom: -34px !important;
        width: max-content !important;
        max-width: 100% !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        color: #22d3ee !important;
        font-size: 12px !important;
        font-weight: 950 !important;
    }
}

@media (max-width: 420px) {
    body[data-page='home'] .tfp-network {
        width: min(330px, 100%) !important;
        min-height: 386px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 104px !important;
        min-height: 66px !important;
        padding: 8px 7px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 11px !important;
    }
}


/* SAFE PATCH V4 — mobile: pomniejszony i wyśrodkowany okrąg kafli */
@media (max-width: 720px) {
    body[data-page='home'] .hero-product.hero-product--network {
        padding-left: 0 !important;
        padding-right: 0 !important;
        overflow: hidden !important;
    }

    body[data-page='home'] .container.hero-product__inner {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 14px !important;
        padding-right: 14px !important;
        overflow: hidden !important;
    }

    body[data-page='home'] .hero-product__visual {
        width: 100% !important;
        min-height: 350px !important;
        margin: 12px auto 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network {
        width: min(292px, calc(100vw - 44px)) !important;
        min-width: 0 !important;
        min-height: 330px !important;
        height: 330px !important;
        aspect-ratio: auto !important;
        margin: 0 auto !important;
        display: block !important;
        position: relative !important;
        overflow: visible !important;
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__halo,
    body[data-page='home'] .tfp-network__lines {
        display: block !important;
        inset: 8px !important;
    }

    body[data-page='home'] .tfp-network__halo--outer {
        border-color: rgba(34, 211, 238, .28) !important;
        box-shadow: 0 0 36px rgba(34, 211, 238, .18) !important;
    }

    body[data-page='home'] .tfp-network__halo--inner {
        inset: 62px !important;
        background: radial-gradient(circle, rgba(34, 211, 238, .17), transparent 72%) !important;
    }

    body[data-page='home'] .tfp-network__center {
        width: 62px !important;
        height: 62px !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        z-index: 4 !important;
    }

    body[data-page='home'] .tfp-network__ball {
        inset: 7px !important;
    }

    body[data-page='home'] .tfp-network__ball::before {
        border-right-width: 5px !important;
    }

    body[data-page='home'] .tfp-network__ball::after {
        border-left-width: 5px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 88px !important;
        min-height: 56px !important;
        padding: 7px 6px !important;
        border-radius: 14px !important;
        display: grid !important;
        grid-template-columns: 1fr 14px !important;
        grid-template-rows: auto auto !important;
        gap: 2px 3px !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        overflow: hidden !important;
        transform: none !important;
        box-shadow:
            inset 0 1px 0 rgba(255,255,255,.18),
            0 8px 18px rgba(0,0,0,.18) !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        left: 50% !important;
        top: 8px !important;
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: 8px !important;
        top: 31% !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        right: 8px !important;
        top: 31% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: 8px !important;
        top: 58% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        right: 8px !important;
        top: 58% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        left: 50% !important;
        bottom: 8px !important;
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__node:hover {
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__node--top:hover,
    body[data-page='home'] .tfp-network__node--bottom:hover {
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__icon {
        grid-column: 1 / -1 !important;
        justify-self: center !important;
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        border-radius: 9px !important;
        font-size: 11px !important;
        line-height: 1 !important;
    }

    body[data-page='home'] .tfp-network__node--right .tfp-network__icon {
        font-size: 8px !important;
        letter-spacing: -0.04em !important;
    }

    body[data-page='home'] .tfp-network__copy {
        grid-column: 1 / 2 !important;
        min-width: 0 !important;
        display: block !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        display: block !important;
        max-width: 100% !important;
        color: #fff !important;
        font-size: 9.8px !important;
        line-height: 1.05 !important;
        font-weight: 950 !important;
        letter-spacing: -0.03em !important;
        white-space: normal !important;
        overflow: hidden !important;
        text-align: center !important;
        text-wrap: balance !important;
    }

    body[data-page='home'] .tfp-network__node small {
        display: none !important;
    }

    body[data-page='home'] .tfp-network__node em {
        grid-column: 2 / 3 !important;
        align-self: center !important;
        justify-self: end !important;
        width: 14px !important;
        height: 14px !important;
        font-size: 13px !important;
    }

    body[data-page='home'] .tfp-network__hint {
        position: absolute !important;
        left: 50% !important;
        bottom: -22px !important;
        width: max-content !important;
        max-width: calc(100vw - 40px) !important;
        transform: translateX(-50%) !important;
        font-size: 10.5px !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    body[data-page='home'] .hero-product__bottom {
        margin-top: 8px !important;
    }
}

@media (max-width: 380px) {
    body[data-page='home'] .tfp-network {
        width: 276px !important;
        height: 316px !important;
        min-height: 316px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 82px !important;
        min-height: 53px !important;
        padding: 6px 5px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 9px !important;
    }

    body[data-page='home'] .tfp-network__center {
        width: 56px !important;
        height: 56px !important;
    }
}


/* SAFE PATCH V5 — mobile: bez strzałek w kaflach, więcej miejsca na tekst */
@media (max-width: 720px) {
    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        grid-template-columns: 1fr !important;
        gap: 3px !important;
    }

    body[data-page='home'] .tfp-network__node em {
        display: none !important;
    }

    body[data-page='home'] .tfp-network__copy {
        grid-column: 1 / -1 !important;
        width: 100% !important;
        text-align: center !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        width: 100% !important;
        font-size: 10.8px !important;
        line-height: 1.08 !important;
    }
}

@media (max-width: 380px) {
    body[data-page='home'] .tfp-network__node strong {
        font-size: 10px !important;
    }
}


/* SAFE PATCH V6 — mobile: odnogi idealnie dochodzą do kafli */
@media (max-width: 720px) {
    body[data-page='home'] .tfp-network__node::after,
    body[data-page='home'] .tfp-network__node--top::after,
    body[data-page='home'] .tfp-network__node--left::after,
    body[data-page='home'] .tfp-network__node--right::after,
    body[data-page='home'] .tfp-network__node--bottom-left::after,
    body[data-page='home'] .tfp-network__node--bottom-right::after,
    body[data-page='home'] .tfp-network__node--bottom::after {
        content: "" !important;
        position: absolute !important;
        inset: auto !important;
        display: block !important;
        border-radius: 999px !important;
        background: linear-gradient(180deg, rgba(34, 211, 238, .95), rgba(34, 211, 238, .40)) !important;
        box-shadow: 0 0 10px rgba(34, 211, 238, .50) !important;
        opacity: 1 !important;
        pointer-events: none !important;
        filter: none !important;
        z-index: -1 !important;
    }

    body[data-page='home'] .tfp-network__node--top::after {
        left: 50% !important;
        bottom: -18px !important;
        width: 3px !important;
        height: 20px !important;
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom::after {
        left: 50% !important;
        top: -18px !important;
        width: 3px !important;
        height: 20px !important;
        transform: translateX(-50%) !important;
    }

    body[data-page='home'] .tfp-network__node--left::after,
    body[data-page='home'] .tfp-network__node--bottom-left::after {
        right: -18px !important;
        top: 50% !important;
        width: 20px !important;
        height: 3px !important;
        transform: translateY(-50%) !important;
        background: linear-gradient(90deg, rgba(34, 211, 238, .55), rgba(34, 211, 238, .98)) !important;
    }

    body[data-page='home'] .tfp-network__node--right::after,
    body[data-page='home'] .tfp-network__node--bottom-right::after {
        left: -18px !important;
        top: 50% !important;
        width: 20px !important;
        height: 3px !important;
        transform: translateY(-50%) !important;
        background: linear-gradient(90deg, rgba(34, 211, 238, .98), rgba(34, 211, 238, .55)) !important;
    }

    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right {
        top: 32% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right {
        top: 57% !important;
    }
}


/* SAFE PATCH V7 — mobile: ustawienie kafli dokładnie pod siatkę SVG, bez krzywych odnóg */
@media (max-width: 720px) {
    body[data-page='home'] .tfp-network__node::after,
    body[data-page='home'] .tfp-network__node--top::after,
    body[data-page='home'] .tfp-network__node--left::after,
    body[data-page='home'] .tfp-network__node--right::after,
    body[data-page='home'] .tfp-network__node--bottom-left::after,
    body[data-page='home'] .tfp-network__node--bottom-right::after,
    body[data-page='home'] .tfp-network__node--bottom::after {
        display: none !important;
        content: none !important;
    }

    body[data-page='home'] .tfp-network {
        width: min(272px, 100%) !important;
        aspect-ratio: 1 !important;
    }

    body[data-page='home'] .tfp-network__lines {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 88px !important;
        min-height: 56px !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
    }

    /* Punkty ustawione dokładnie wg SVG viewBox 420x420:
       top 210,78 | left 82,168 | right 338,168 | bottom-left 84,268 | bottom-right 336,268 | bottom 210,342 */
    body[data-page='home'] .tfp-network__node--top {
        left: 50% !important;
        top: 18.6% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: 19.5% !important;
        top: 40% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        left: 80.5% !important;
        top: 40% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: 20% !important;
        top: 63.8% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        left: 80% !important;
        top: 63.8% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        left: 50% !important;
        top: 81.4% !important;
        right: auto !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__center {
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
}

/* TFP HOTFIX — mobile: kafle modułów na stronie głównej nie przesuwają się po tapnięciu */
@media (max-width: 980px) {
    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
        transition: filter .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease !important;
    }

    body[data-page='home'] .tfp-network__node:hover,
    body[data-page='home'] .tfp-network__node:active,
    body[data-page='home'] .tfp-network__node:focus,
    body[data-page='home'] .tfp-network__node:focus-visible,
    body[data-page='home'] .tfp-network__node--left:hover,
    body[data-page='home'] .tfp-network__node--left:active,
    body[data-page='home'] .tfp-network__node--left:focus,
    body[data-page='home'] .tfp-network__node--left:focus-visible,
    body[data-page='home'] .tfp-network__node--right:hover,
    body[data-page='home'] .tfp-network__node--right:active,
    body[data-page='home'] .tfp-network__node--right:focus,
    body[data-page='home'] .tfp-network__node--right:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-left:hover,
    body[data-page='home'] .tfp-network__node--bottom-left:active,
    body[data-page='home'] .tfp-network__node--bottom-left:focus,
    body[data-page='home'] .tfp-network__node--bottom-left:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-right:hover,
    body[data-page='home'] .tfp-network__node--bottom-right:active,
    body[data-page='home'] .tfp-network__node--bottom-right:focus,
    body[data-page='home'] .tfp-network__node--bottom-right:focus-visible {
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__node--top:hover,
    body[data-page='home'] .tfp-network__node--top:active,
    body[data-page='home'] .tfp-network__node--top:focus,
    body[data-page='home'] .tfp-network__node--top:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom:hover,
    body[data-page='home'] .tfp-network__node--bottom:active,
    body[data-page='home'] .tfp-network__node--bottom:focus,
    body[data-page='home'] .tfp-network__node--bottom:focus-visible {
        transform: translateX(-50%) !important;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .tfp-network__node:hover,
    body[data-page='home'] .tfp-network__node:active,
    body[data-page='home'] .tfp-network__node:focus,
    body[data-page='home'] .tfp-network__node:focus-visible,
    body[data-page='home'] .tfp-network__node--left:hover,
    body[data-page='home'] .tfp-network__node--left:active,
    body[data-page='home'] .tfp-network__node--left:focus,
    body[data-page='home'] .tfp-network__node--left:focus-visible,
    body[data-page='home'] .tfp-network__node--right:hover,
    body[data-page='home'] .tfp-network__node--right:active,
    body[data-page='home'] .tfp-network__node--right:focus,
    body[data-page='home'] .tfp-network__node--right:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-left:hover,
    body[data-page='home'] .tfp-network__node--bottom-left:active,
    body[data-page='home'] .tfp-network__node--bottom-left:focus,
    body[data-page='home'] .tfp-network__node--bottom-left:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-right:hover,
    body[data-page='home'] .tfp-network__node--bottom-right:active,
    body[data-page='home'] .tfp-network__node--bottom-right:focus,
    body[data-page='home'] .tfp-network__node--bottom-right:focus-visible {
        transform: none !important;
    }

    body[data-page='home'] .tfp-network__node--top:hover,
    body[data-page='home'] .tfp-network__node--top:active,
    body[data-page='home'] .tfp-network__node--top:focus,
    body[data-page='home'] .tfp-network__node--top:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom:hover,
    body[data-page='home'] .tfp-network__node--bottom:active,
    body[data-page='home'] .tfp-network__node--bottom:focus,
    body[data-page='home'] .tfp-network__node--bottom:focus-visible {
        transform: translateX(-50%) !important;
    }
}

/* =========================================================
   TFP HOTFIX FINAL — mobile: kafle modułów nie zmieniają pozycji po tapnięciu
   Problem był taki, że wcześniejsze :hover/:focus/:active usuwały translateY(-50%)
   dla kafli ustawionych absolutnie. Na telefonie tap = focus/active, więc kafel szedł w dół.
   ========================================================= */
@media (max-width: 720px) {
    body[data-page='home'] .tfp-network,
    body[data-page='home'] .tfp-network * {
        -webkit-tap-highlight-color: transparent !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom,
    body[data-page='home'] .tfp-network__node:link,
    body[data-page='home'] .tfp-network__node:visited,
    body[data-page='home'] .tfp-network__node:hover,
    body[data-page='home'] .tfp-network__node:active,
    body[data-page='home'] .tfp-network__node:focus,
    body[data-page='home'] .tfp-network__node:focus-visible,
    body[data-page='home'] .tfp-network__node--top:hover,
    body[data-page='home'] .tfp-network__node--top:active,
    body[data-page='home'] .tfp-network__node--top:focus,
    body[data-page='home'] .tfp-network__node--top:focus-visible,
    body[data-page='home'] .tfp-network__node--left:hover,
    body[data-page='home'] .tfp-network__node--left:active,
    body[data-page='home'] .tfp-network__node--left:focus,
    body[data-page='home'] .tfp-network__node--left:focus-visible,
    body[data-page='home'] .tfp-network__node--right:hover,
    body[data-page='home'] .tfp-network__node--right:active,
    body[data-page='home'] .tfp-network__node--right:focus,
    body[data-page='home'] .tfp-network__node--right:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-left:hover,
    body[data-page='home'] .tfp-network__node--bottom-left:active,
    body[data-page='home'] .tfp-network__node--bottom-left:focus,
    body[data-page='home'] .tfp-network__node--bottom-left:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-right:hover,
    body[data-page='home'] .tfp-network__node--bottom-right:active,
    body[data-page='home'] .tfp-network__node--bottom-right:focus,
    body[data-page='home'] .tfp-network__node--bottom-right:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom:hover,
    body[data-page='home'] .tfp-network__node--bottom:active,
    body[data-page='home'] .tfp-network__node--bottom:focus,
    body[data-page='home'] .tfp-network__node--bottom:focus-visible {
        transform: translate(-50%, -50%) !important;
        translate: 0 0 !important;
        margin: 0 !important;
        transition-property: box-shadow, border-color, background, filter, opacity !important;
        outline: none !important;
    }

    body[data-page='home'] .tfp-network__node:active {
        filter: brightness(1.04) saturate(1.06) !important;
    }
}

/* =========================================================
   ACCESS MODAL — COMPACT MOBILE / SHORT VIEWPORT FIX
   Keeps the organizer access dialog fully usable on devices
   such as iPhone SE and other low-height phones.
========================================================= */
.tfp-access-modal {
    overscroll-behavior: contain;
}

.tfp-access-modal__dialog {
    max-height: calc(100vh - 30px);
    max-height: calc(100dvh - 30px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.tfp-access-modal__dialog::-webkit-scrollbar {
    width: 5px;
}

.tfp-access-modal__dialog::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cbd5e1;
}

@media (max-width: 560px) {
    .tfp-access-modal {
        inset: var(--tfp-header-fixed-height, 63px) 0 0;
        align-items: flex-start;
        padding: 8px;
        overflow-y: auto;
    }

    .tfp-access-modal__dialog {
        width: 100%;
        max-height: calc(100vh - var(--tfp-header-fixed-height, 63px) - 16px);
        max-height: calc(100dvh - var(--tfp-header-fixed-height, 63px) - 16px);
        padding: 18px;
        border-radius: 20px;
    }

    .tfp-access-modal__close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        font-size: 21px;
    }

    .tfp-access-modal__icon {
        width: 42px;
        height: 42px;
        margin-bottom: 10px;
        border-radius: 14px;
        font-size: 19px;
    }

    .tfp-access-modal__eyebrow {
        padding: 5px 8px;
        font-size: 9px;
    }

    .tfp-access-modal__dialog h2 {
        margin: 10px 38px 7px 0;
        font-size: clamp(22px, 7vw, 27px);
        line-height: 1.04;
        letter-spacing: -0.045em;
    }

    .tfp-access-modal__dialog p {
        font-size: 12.5px;
        line-height: 1.42;
    }

    .tfp-access-modal__steps {
        gap: 6px;
        margin: 12px 0;
    }

    .tfp-access-modal__steps div {
        gap: 8px;
        min-height: 38px;
        padding: 7px 9px;
        border-radius: 12px;
    }

    .tfp-access-modal__steps strong {
        width: 24px;
        height: 24px;
        flex: 0 0 24px;
        font-size: 10px;
    }

    .tfp-access-modal__steps span {
        font-size: 11.5px;
        line-height: 1.2;
    }

    .tfp-access-modal__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7px;
        margin-top: 10px;
    }

    .tfp-access-modal__actions .btn {
        min-width: 0;
        min-height: 38px;
        padding: 8px 10px;
        font-size: 11px;
        line-height: 1.1;
    }

    .tfp-access-modal__note {
        margin-top: 9px !important;
        font-size: 10.5px !important;
        line-height: 1.35 !important;
    }
}

@media (max-width: 380px), (max-height: 700px) and (max-width: 560px) {
    .tfp-access-modal__dialog {
        padding: 14px;
        border-radius: 18px;
    }

    .tfp-access-modal__icon {
        display: none;
    }

    .tfp-access-modal__eyebrow {
        margin-right: 38px;
    }

    .tfp-access-modal__dialog h2 {
        margin-top: 8px;
        font-size: 22px;
    }

    .tfp-access-modal__dialog p {
        font-size: 12px;
        line-height: 1.35;
    }

    .tfp-access-modal__steps {
        margin: 10px 0;
    }

    .tfp-access-modal__actions {
        margin-top: 8px;
    }
}

@media (max-width: 340px) {
    .tfp-access-modal__actions {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   USER PANELS — compact, app-like cards
   Scoped to the home page so other cards remain untouched.
========================================================= */
body[data-page='home'] .tfp-home-panels {
    position: relative;
    padding: 52px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 22%, rgba(37, 99, 235, .08), transparent 28%),
        radial-gradient(circle at 92% 80%, rgba(14, 165, 233, .07), transparent 26%),
        #f8fbff;
}

body[data-page='home'] .tfp-home-panels__heading {
    margin: 0 auto 24px;
    text-align: center;
}

body[data-page='home'] .tfp-home-panels__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 10px;
    margin-bottom: 8px;
    border: 1px solid #d9e7fb;
    border-radius: 999px;
    background: rgba(255,255,255,.88);
    color: #1d5cbb;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

body[data-page='home'] .tfp-home-panels__heading h2 {
    margin: 0;
    color: #0b2347;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

body[data-page='home'] .tfp-home-panels__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

body[data-page='home'] .tfp-home-panel {
    --panel-accent: #2563eb;
    --panel-accent-rgb: 37, 99, 235;
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto 1fr auto;
    gap: 14px 16px;
    min-width: 0;
    min-height: 230px;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(157, 181, 219, .36);
    border-radius: 24px;
    background:
        radial-gradient(circle at 100% 100%, rgba(var(--panel-accent-rgb), .11), transparent 40%),
        rgba(255,255,255,.96);
    box-shadow: 0 18px 40px rgba(30, 64, 115, .09);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body[data-page='home'] .tfp-home-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--panel-accent), rgba(var(--panel-accent-rgb), .42));
}

body[data-page='home'] .tfp-home-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(var(--panel-accent-rgb), .34);
    box-shadow: 0 22px 48px rgba(30, 64, 115, .14);
}

body[data-page='home'] .tfp-home-panel--organizer {
    --panel-accent: #2563eb;
    --panel-accent-rgb: 37, 99, 235;
}

body[data-page='home'] .tfp-home-panel--referee {
    --panel-accent: #7c3aed;
    --panel-accent-rgb: 124, 58, 237;
}

body[data-page='home'] .tfp-home-panel--coach {
    --panel-accent: #0891b2;
    --panel-accent-rgb: 8, 145, 178;
}

body[data-page='home'] .tfp-home-panel__icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(var(--panel-accent-rgb), .18);
    border-radius: 17px;
    background: linear-gradient(145deg, rgba(var(--panel-accent-rgb), .14), rgba(var(--panel-accent-rgb), .05));
    color: var(--panel-accent);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

body[data-page='home'] .tfp-home-panel__icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

body[data-page='home'] .tfp-home-panel__content {
    grid-column: 2;
    min-width: 0;
}

body[data-page='home'] .tfp-home-panel__content h3 {
    margin: 1px 0 7px;
    color: #0b2347;
    font-size: 20px;
    line-height: 1.15;
    letter-spacing: -.025em;
}

body[data-page='home'] .tfp-home-panel__content p {
    margin: 0;
    color: #60718d;
    font-size: 13px;
    line-height: 1.55;
}

body[data-page='home'] .tfp-home-panel__action {
    grid-column: 1 / -1;
    align-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 42px;
    padding: 9px 11px 9px 15px;
    border: 1px solid rgba(var(--panel-accent-rgb), .16);
    border-radius: 14px;
    background: rgba(var(--panel-accent-rgb), .08);
    color: var(--panel-accent);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

body[data-page='home'] .tfp-home-panel__arrow {
    display: grid;
    place-items: center;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    border-radius: 9px;
    background: var(--panel-accent);
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

body[data-page='home'] .tfp-home-panel__action:hover,
body[data-page='home'] .tfp-home-panel__action:focus-visible {
    background: var(--panel-accent);
    color: #fff;
    transform: translateY(-1px);
    outline: none;
}

body[data-page='home'] .tfp-home-panel__action:hover .tfp-home-panel__arrow,
body[data-page='home'] .tfp-home-panel__action:focus-visible .tfp-home-panel__arrow {
    background: rgba(255,255,255,.18);
}

@media (max-width: 820px) {
    body[data-page='home'] .tfp-home-panels {
        padding: 34px 0 38px;
    }

    body[data-page='home'] .tfp-home-panels__heading {
        margin-bottom: 16px;
    }

    body[data-page='home'] .tfp-home-panels__grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    body[data-page='home'] .tfp-home-panel {
        grid-template-columns: 46px minmax(0, 1fr) 38px;
        grid-template-rows: auto;
        align-items: center;
        gap: 10px;
        min-height: 0;
        padding: 14px;
        border-radius: 19px;
        box-shadow: 0 10px 26px rgba(30, 64, 115, .08);
    }

    body[data-page='home'] .tfp-home-panel:hover {
        transform: none;
    }

    body[data-page='home'] .tfp-home-panel__icon {
        grid-column: 1;
        grid-row: 1;
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    body[data-page='home'] .tfp-home-panel__icon svg {
        width: 23px;
        height: 23px;
    }

    body[data-page='home'] .tfp-home-panel__content {
        grid-column: 2;
        grid-row: 1;
    }

    body[data-page='home'] .tfp-home-panel__content h3 {
        margin: 0 0 4px;
        font-size: 16px;
    }

    body[data-page='home'] .tfp-home-panel__content p {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        color: #667791;
        font-size: 11.5px;
        line-height: 1.35;
    }

    body[data-page='home'] .tfp-home-panel__action {
        grid-column: 3;
        grid-row: 1;
        align-self: center;
        width: 38px;
        min-width: 38px;
        height: 38px;
        min-height: 38px;
        padding: 0;
        border: 0;
        border-radius: 12px;
        background: rgba(var(--panel-accent-rgb), .11);
    }

    body[data-page='home'] .tfp-home-panel__action-label {
        display: none;
    }

    body[data-page='home'] .tfp-home-panel__arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        border-radius: 12px;
        font-size: 23px;
    }
}

@media (max-width: 480px) {
    body[data-page='home'] .tfp-home-panels {
        padding: 26px 0 30px;
    }

    body[data-page='home'] .tfp-home-panels .container {
        padding-inline: 12px;
    }

    body[data-page='home'] .tfp-home-panels__heading {
        text-align: left;
        margin-bottom: 13px;
    }

    body[data-page='home'] .tfp-home-panels__eyebrow {
        min-height: 23px;
        margin-bottom: 6px;
        padding: 4px 8px;
        font-size: 8.5px;
    }

    body[data-page='home'] .tfp-home-panels__heading h2 {
        font-size: 22px;
    }

    body[data-page='home'] .tfp-home-panel {
        grid-template-columns: 42px minmax(0, 1fr) 36px;
        gap: 9px;
        padding: 12px;
        border-radius: 17px;
    }

    body[data-page='home'] .tfp-home-panel__icon {
        width: 42px;
        height: 42px;
        border-radius: 13px;
    }

    body[data-page='home'] .tfp-home-panel__icon svg {
        width: 21px;
        height: 21px;
    }

    body[data-page='home'] .tfp-home-panel__content h3 {
        font-size: 15.5px;
    }

    body[data-page='home'] .tfp-home-panel__content p {
        font-size: 11px;
        line-height: 1.3;
    }

    body[data-page='home'] .tfp-home-panel__action,
    body[data-page='home'] .tfp-home-panel__arrow {
        width: 36px;
        min-width: 36px;
        height: 36px;
        min-height: 36px;
        flex-basis: 36px;
        border-radius: 11px;
    }
}

/* =========================================================
   HOME — compact "Jak to działa?" cards on tablets/mobile
   ========================================================= */
body[data-page='home'] #how-it-works {
    position: relative;
}

body[data-page='home'] #how-it-works .how__step {
    border: 1px solid rgba(19, 74, 139, .10);
    background:
        radial-gradient(circle at 100% 0%, rgba(37, 99, 235, .07), transparent 9rem),
        rgba(255, 255, 255, .97);
    box-shadow: 0 14px 34px rgba(29, 65, 111, .08);
}

body[data-page='home'] #how-it-works .how__step:nth-child(1) {
    --how-accent: #2563eb;
    --how-accent-rgb: 37, 99, 235;
}

body[data-page='home'] #how-it-works .how__step:nth-child(2) {
    --how-accent: #7c3aed;
    --how-accent-rgb: 124, 58, 237;
}

body[data-page='home'] #how-it-works .how__step:nth-child(3) {
    --how-accent: #0891b2;
    --how-accent-rgb: 8, 145, 178;
}

body[data-page='home'] #how-it-works .how__number {
    background: linear-gradient(145deg, var(--how-accent), rgba(var(--how-accent-rgb), .78)) !important;
    box-shadow: 0 9px 22px rgba(var(--how-accent-rgb), .24);
}

@media (max-width: 820px) {
    body[data-page='home'] #how-it-works {
        padding: 32px 0 36px;
    }

    body[data-page='home'] #how-it-works .container {
        padding-inline: 14px;
    }

    body[data-page='home'] #how-it-works h2 {
        margin: 0 0 15px !important;
        text-align: left !important;
        color: #0b2347;
        font-size: 23px;
        line-height: 1.12;
        letter-spacing: -.035em;
    }

    body[data-page='home'] #how-it-works .how {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body[data-page='home'] #how-it-works .how__step {
        display: grid;
        grid-template-columns: 45px minmax(0, 1fr);
        grid-template-rows: auto auto;
        column-gap: 11px;
        row-gap: 3px;
        align-items: center;
        min-height: 0;
        padding: 13px 14px;
        border-radius: 18px;
        text-align: left;
        box-shadow: 0 10px 25px rgba(29, 65, 111, .075);
        transform: none !important;
    }

    body[data-page='home'] #how-it-works .how__number {
        grid-column: 1;
        grid-row: 1 / span 2;
        width: 45px;
        height: 45px;
        margin: 0;
        border-radius: 14px;
        font-size: 13px;
        line-height: 1;
    }

    body[data-page='home'] #how-it-works .how__step h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: end;
        margin: 0;
        color: #10294e;
        font-size: 16px;
        line-height: 1.16;
        letter-spacing: -.018em;
    }

    body[data-page='home'] #how-it-works .how__step p {
        grid-column: 2;
        grid-row: 2;
        align-self: start;
        display: -webkit-box;
        overflow: hidden;
        margin: 0;
        color: #667791;
        font-size: 11.5px;
        line-height: 1.36;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }
}

@media (max-width: 480px) {
    body[data-page='home'] #how-it-works {
        padding: 25px 0 29px;
    }

    body[data-page='home'] #how-it-works .container {
        padding-inline: 12px;
    }

    body[data-page='home'] #how-it-works h2 {
        margin-bottom: 12px !important;
        font-size: 21px;
    }

    body[data-page='home'] #how-it-works .how {
        gap: 8px;
    }

    body[data-page='home'] #how-it-works .how__step {
        grid-template-columns: 40px minmax(0, 1fr);
        column-gap: 10px;
        padding: 11px 12px;
        border-radius: 16px;
    }

    body[data-page='home'] #how-it-works .how__number {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        font-size: 12px;
    }

    body[data-page='home'] #how-it-works .how__step h3 {
        font-size: 15px;
    }

    body[data-page='home'] #how-it-works .how__step p {
        font-size: 10.8px;
        line-height: 1.32;
    }
}

/* =========================================================
   TFP SAFE HOME MOBILE 2026-08
   Stabilny układ modułów — bez wychodzenia poza ekran.
   ========================================================= */
@media (max-width: 720px) {
    body[data-page='home'] .hero-product__content {
        margin-bottom: 4px !important;
    }

    body[data-page='home'] .hero-product__actions {
        margin-bottom: 6px !important;
    }

    body[data-page='home'] .hero-product__play-link {
        display: none !important;
    }

    body[data-page='home'] .hero-product__visual {
        width: 100% !important;
        max-width: 100% !important;
        margin: 2px auto 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network {
        position: relative !important;
        width: min(340px, calc(100vw - 30px)) !important;
        height: auto !important;
        min-height: 0 !important;
        aspect-ratio: 1 / 1 !important;
        margin: 0 auto !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network__lines {
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 92px !important;
        min-width: 92px !important;
        max-width: 92px !important;
        min-height: 58px !important;
        height: 58px !important;
        padding: 7px 6px !important;
        margin: 0 !important;
        border-radius: 15px !important;
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        left: 50% !important;
        top: 14% !important;
        right: auto !important;
        bottom: auto !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: 18% !important;
        top: 37% !important;
        right: auto !important;
        bottom: auto !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        left: 82% !important;
        top: 37% !important;
        right: auto !important;
        bottom: auto !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: 18% !important;
        top: 65% !important;
        right: auto !important;
        bottom: auto !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        left: 82% !important;
        top: 65% !important;
        right: auto !important;
        bottom: auto !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        left: 50% !important;
        top: 88% !important;
        right: auto !important;
        bottom: auto !important;
    }

    body[data-page='home'] .tfp-network__node:hover,
    body[data-page='home'] .tfp-network__node:active,
    body[data-page='home'] .tfp-network__node:focus,
    body[data-page='home'] .tfp-network__node:focus-visible,
    body[data-page='home'] .tfp-network__node--top:hover,
    body[data-page='home'] .tfp-network__node--top:active,
    body[data-page='home'] .tfp-network__node--top:focus,
    body[data-page='home'] .tfp-network__node--top:focus-visible,
    body[data-page='home'] .tfp-network__node--left:hover,
    body[data-page='home'] .tfp-network__node--left:active,
    body[data-page='home'] .tfp-network__node--left:focus,
    body[data-page='home'] .tfp-network__node--left:focus-visible,
    body[data-page='home'] .tfp-network__node--right:hover,
    body[data-page='home'] .tfp-network__node--right:active,
    body[data-page='home'] .tfp-network__node--right:focus,
    body[data-page='home'] .tfp-network__node--right:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-left:hover,
    body[data-page='home'] .tfp-network__node--bottom-left:active,
    body[data-page='home'] .tfp-network__node--bottom-left:focus,
    body[data-page='home'] .tfp-network__node--bottom-left:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom-right:hover,
    body[data-page='home'] .tfp-network__node--bottom-right:active,
    body[data-page='home'] .tfp-network__node--bottom-right:focus,
    body[data-page='home'] .tfp-network__node--bottom-right:focus-visible,
    body[data-page='home'] .tfp-network__node--bottom:hover,
    body[data-page='home'] .tfp-network__node--bottom:active,
    body[data-page='home'] .tfp-network__node--bottom:focus,
    body[data-page='home'] .tfp-network__node--bottom:focus-visible {
        transform: translate(-50%, -50%) !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 24px !important;
        height: 24px !important;
        min-width: 24px !important;
        font-size: 11px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 10.5px !important;
        line-height: 1.05 !important;
        white-space: normal !important;
    }

    body[data-page='home'] .tfp-network__node small,
    body[data-page='home'] .tfp-network__node em {
        display: none !important;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -18px !important;
        font-size: 9.5px !important;
    }
}

@media (max-width: 360px) {
    body[data-page='home'] .tfp-network {
        width: min(310px, calc(100vw - 24px)) !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 84px !important;
        min-width: 84px !important;
        max-width: 84px !important;
        height: 54px !important;
        min-height: 54px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 9.6px !important;
    }
}

/* =========================================================
   HOME — "Jedna platforma, cztery role"
   Naprawa kompaktowego układu desktop + mobile
   ========================================================= */
body[data-page='home'] .tfp-home-audience {
    position: relative !important;
    overflow: hidden !important;
    padding: 34px 0 !important;
    background:
        radial-gradient(circle at 8% 12%, rgba(37, 99, 235, .07), transparent 240px),
        radial-gradient(circle at 94% 88%, rgba(20, 184, 166, .06), transparent 260px),
        linear-gradient(180deg, #f9fbff 0%, #f3f8ff 100%) !important;
}

body[data-page='home'] .tfp-home-audience > .container {
    width: min(1180px, calc(100% - 32px)) !important;
    margin-inline: auto !important;
}

body[data-page='home'] .tfp-home-audience__head {
    display: block !important;
    margin: 0 0 14px !important;
}

body[data-page='home'] .tfp-home-audience__head > span {
    display: inline-flex !important;
    align-items: center !important;
    min-height: 24px !important;
    padding: 0 9px !important;
    border: 1px solid #cfe1f7 !important;
    border-radius: 999px !important;
    color: #1769e0 !important;
    background: rgba(255,255,255,.82) !important;
    font-size: 9px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: .09em !important;
    text-transform: uppercase !important;
}

body[data-page='home'] .tfp-home-audience__head h2 {
    margin: 7px 0 0 !important;
    max-width: none !important;
    color: #071a3d !important;
    font-size: clamp(24px, 3vw, 34px) !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    letter-spacing: -.045em !important;
}

body[data-page='home'] .tfp-home-audience__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
}

body[data-page='home'] .tfp-home-audience__item {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 40px minmax(0, 1fr) 18px !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
    min-height: 76px !important;
    padding: 11px 12px !important;
    border: 1px solid #d8e5f5 !important;
    border-radius: 16px !important;
    color: #0b234d !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 9px 24px rgba(7,26,61,.055) !important;
    text-decoration: none !important;
    transform: none !important;
}

body[data-page='home'] .tfp-home-audience__item::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 14px !important;
    bottom: 14px !important;
    width: 3px !important;
    border-radius: 0 4px 4px 0 !important;
    background: #2f80ed !important;
}

body[data-page='home'] .tfp-home-audience__item:nth-child(2)::before { background: #7c3aed !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(3)::before { background: #10b981 !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(4)::before { background: #f59e0b !important; }

body[data-page='home'] .tfp-home-audience__item:hover {
    transform: translateY(-2px) !important;
    border-color: #a9c9ef !important;
    box-shadow: 0 14px 30px rgba(7,26,61,.09) !important;
}

body[data-page='home'] .tfp-home-audience__icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    color: #1769e0 !important;
    background: #edf6ff !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

body[data-page='home'] .tfp-home-audience__item:nth-child(2) .tfp-home-audience__icon { background: #f3edff !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(3) .tfp-home-audience__icon { background: #eafaf4 !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(4) .tfp-home-audience__icon { background: #fff6df !important; }

body[data-page='home'] .tfp-home-audience__copy {
    display: block !important;
    min-width: 0 !important;
}

body[data-page='home'] .tfp-home-audience__copy strong,
body[data-page='home'] .tfp-home-audience__copy small {
    display: block !important;
    margin: 0 !important;
}

body[data-page='home'] .tfp-home-audience__copy strong {
    overflow: hidden !important;
    color: #071a3d !important;
    font-size: 14px !important;
    line-height: 1.12 !important;
    font-weight: 850 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

body[data-page='home'] .tfp-home-audience__copy small {
    margin-top: 4px !important;
    color: #687a94 !important;
    font-size: 10px !important;
    line-height: 1.28 !important;
    font-weight: 600 !important;
}

body[data-page='home'] .tfp-home-audience__item em {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 18px !important;
    height: 24px !important;
    color: #2f80ed !important;
    font-size: 22px !important;
    line-height: 1 !important;
    font-style: normal !important;
}

@media (max-width: 820px) {
    body[data-page='home'] .tfp-home-audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .tfp-home-audience {
        padding: 20px 0 22px !important;
    }

    body[data-page='home'] .tfp-home-audience > .container {
        width: calc(100% - 20px) !important;
    }

    body[data-page='home'] .tfp-home-audience__head {
        margin-bottom: 10px !important;
    }

    body[data-page='home'] .tfp-home-audience__head > span {
        min-height: 20px !important;
        padding: 0 7px !important;
        font-size: 7px !important;
    }

    body[data-page='home'] .tfp-home-audience__head h2 {
        margin-top: 5px !important;
        font-size: 21px !important;
        line-height: 1.02 !important;
    }

    body[data-page='home'] .tfp-home-audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 7px !important;
    }

    body[data-page='home'] .tfp-home-audience__item {
        grid-template-columns: 32px minmax(0, 1fr) 12px !important;
        gap: 7px !important;
        min-height: 64px !important;
        padding: 8px 7px 8px 9px !important;
        border-radius: 13px !important;
        box-shadow: 0 6px 16px rgba(7,26,61,.045) !important;
    }

    body[data-page='home'] .tfp-home-audience__item::before {
        top: 10px !important;
        bottom: 10px !important;
        width: 2px !important;
    }

    body[data-page='home'] .tfp-home-audience__icon {
        width: 32px !important;
        height: 32px !important;
        border-radius: 10px !important;
        font-size: 14px !important;
    }

    body[data-page='home'] .tfp-home-audience__copy strong {
        font-size: 11.5px !important;
        line-height: 1.08 !important;
    }

    body[data-page='home'] .tfp-home-audience__copy small {
        display: -webkit-box !important;
        overflow: hidden !important;
        margin-top: 3px !important;
        font-size: 8px !important;
        line-height: 1.18 !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }

    body[data-page='home'] .tfp-home-audience__item em {
        width: 12px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 380px) {
    body[data-page='home'] .tfp-home-audience__grid {
        grid-template-columns: 1fr !important;
        gap: 6px !important;
    }

    body[data-page='home'] .tfp-home-audience__item {
        min-height: 56px !important;
    }
}

/* =========================================================
   HOME DESKTOP — kompaktowa sieć modułów + widoczne statystyki
   23.08.2026
   Tylko desktop. Mobile pozostaje bez zmian.
   ========================================================= */
@media (min-width: 981px) {
    body[data-page='home'] .hero.hero-product.hero-product--network,
    body[data-page='home'] .hero-product.hero-product--network {
        min-height: 0 !important;
        padding-top: 52px !important;
        padding-bottom: 28px !important;
    }

    body[data-page='home'] .container.hero-product__inner {
        width: min(1220px, calc(100% - 48px)) !important;
        grid-template-columns: minmax(410px, .92fr) minmax(520px, 1.08fr) !important;
        gap: clamp(34px, 4vw, 64px) !important;
        align-items: center !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 470px !important;
        height: 470px !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network {
        width: min(520px, 100%) !important;
        height: 520px !important;
        min-height: 520px !important;
        aspect-ratio: 1 / 1 !important;
        overflow: visible !important;
        transform: scale(.94) !important;
        transform-origin: center center !important;
    }

    body[data-page='home'] .tfp-network__halo--inner {
        inset: 70px !important;
    }

    body[data-page='home'] .tfp-network__center {
        width: 104px !important;
        height: 104px !important;
        box-shadow:
            0 0 0 9px rgba(34, 211, 238, .065),
            0 0 34px rgba(34, 211, 238, .30),
            inset 0 1px 0 rgba(255,255,255,.14) !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 194px !important;
        min-width: 194px !important;
        max-width: 194px !important;
        min-height: 86px !important;
        height: auto !important;
        padding: 12px 13px !important;
        grid-template-columns: 42px minmax(0, 1fr) 22px !important;
        gap: 10px !important;
        border-radius: 19px !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 42px !important;
        height: 42px !important;
        min-width: 42px !important;
        border-radius: 14px !important;
        font-size: 18px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 16px !important;
        line-height: 1.03 !important;
    }

    body[data-page='home'] .tfp-network__node small {
        max-width: 112px !important;
        margin-top: 4px !important;
        font-size: 9.5px !important;
        line-height: 1.18 !important;
    }

    body[data-page='home'] .tfp-network__node em {
        width: 22px !important;
        height: 22px !important;
        font-size: 18px !important;
    }

    body[data-page='home'] .tfp-network__node--top {
        top: -8px !important;
    }

    body[data-page='home'] .tfp-network__node--left {
        left: -28px !important;
        top: 28% !important;
    }

    body[data-page='home'] .tfp-network__node--right {
        right: -28px !important;
        top: 28% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-left {
        left: -28px !important;
        top: 57% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom-right {
        right: -28px !important;
        top: 57% !important;
    }

    body[data-page='home'] .tfp-network__node--bottom {
        bottom: -16px !important;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -48px !important;
        font-size: 13px !important;
    }

    body[data-page='home'] .hero-product__bottom {
        margin-top: 8px !important;
    }

    body[data-page='home'] .hero-product__metrics {
        width: min(100%, 500px) !important;
        grid-template-columns: repeat(4, minmax(96px, 1fr)) !important;
        gap: 10px !important;
        margin-top: 0 !important;
    }

    body[data-page='home'] .hero-product__metrics div {
        min-height: 84px !important;
        padding: 9px 10px !important;
        gap: 4px !important;
        border-radius: 15px !important;
    }

    body[data-page='home'] .hero-product__metric-icon {
        width: 22px !important;
        height: 22px !important;
        border-radius: 8px !important;
        font-size: 12px !important;
    }

    body[data-page='home'] .hero-product__metrics strong {
        font-size: 28px !important;
        line-height: .92 !important;
    }

    body[data-page='home'] .hero-product__metrics div > span:last-child {
        font-size: 10px !important;
        line-height: 1.05 !important;
    }
}

/* Na niższych ekranach desktopowych jeszcze odrobinę ciaśniej. */
@media (min-width: 981px) and (max-height: 900px) {
    body[data-page='home'] .hero.hero-product.hero-product--network,
    body[data-page='home'] .hero-product.hero-product--network {
        padding-top: 38px !important;
        padding-bottom: 22px !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 430px !important;
        height: 430px !important;
    }

    body[data-page='home'] .tfp-network {
        width: 480px !important;
        height: 480px !important;
        min-height: 480px !important;
    }

    body[data-page='home'] .hero-product__bottom {
        margin-top: 2px !important;
    }
}

/* =========================================================
   HOME 2026-08-23 — desktop: średnie moduły + pełny opis platformy
   ========================================================= */
@media (min-width: 981px) {
    body[data-page='home'] .hero.hero-product.hero-product--network,
    body[data-page='home'] .hero-product.hero-product--network {
        padding-top: 48px !important;
        padding-bottom: 32px !important;
    }

    body[data-page='home'] .container.hero-product__inner {
        width: min(1260px, calc(100% - 48px)) !important;
        grid-template-columns: minmax(420px, .9fr) minmax(570px, 1.1fr) !important;
        gap: clamp(40px, 4.5vw, 72px) !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 500px !important;
        height: 500px !important;
    }

    body[data-page='home'] .tfp-network {
        width: 560px !important;
        height: 560px !important;
        min-height: 560px !important;
        transform: scale(.98) !important;
    }

    body[data-page='home'] .tfp-network__center {
        width: 112px !important;
        height: 112px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 214px !important;
        min-width: 214px !important;
        max-width: 214px !important;
        min-height: 92px !important;
        padding: 13px 14px !important;
        grid-template-columns: 44px minmax(0, 1fr) 24px !important;
        gap: 11px !important;
        border-radius: 20px !important;
    }

    body[data-page='home'] .tfp-network__icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        font-size: 19px !important;
    }

    body[data-page='home'] .tfp-network__node strong {
        font-size: 17px !important;
        line-height: 1.04 !important;
    }

    body[data-page='home'] .tfp-network__node small {
        max-width: 126px !important;
        margin-top: 4px !important;
        font-size: 10px !important;
        line-height: 1.2 !important;
    }

    body[data-page='home'] .tfp-network__node em {
        width: 24px !important;
        height: 24px !important;
        font-size: 19px !important;
    }

    body[data-page='home'] .tfp-network__node--top { top: -4px !important; }
    body[data-page='home'] .tfp-network__node--left { left: -36px !important; top: 29% !important; }
    body[data-page='home'] .tfp-network__node--right { right: -36px !important; top: 29% !important; }
    body[data-page='home'] .tfp-network__node--bottom-left { left: -36px !important; top: 58% !important; }
    body[data-page='home'] .tfp-network__node--bottom-right { right: -36px !important; top: 58% !important; }
    body[data-page='home'] .tfp-network__node--bottom { bottom: -12px !important; }

    body[data-page='home'] .tfp-network__hint {
        bottom: -44px !important;
        font-size: 13px !important;
    }

    body[data-page='home'] .hero-product__bottom {
        margin-top: 12px !important;
    }

    body[data-page='home'] .hero-product__metrics {
        width: min(100%, 520px) !important;
        gap: 10px !important;
    }

    body[data-page='home'] .hero-product__metrics div {
        min-height: 90px !important;
        padding: 10px !important;
    }

    body[data-page='home'] .hero-product__metrics strong {
        font-size: 30px !important;
    }
}

@media (min-width: 981px) and (max-height: 900px) {
    body[data-page='home'] .hero-product__visual {
        min-height: 470px !important;
        height: 470px !important;
    }

    body[data-page='home'] .tfp-network {
        width: 525px !important;
        height: 525px !important;
        min-height: 525px !important;
    }

    body[data-page='home'] .tfp-network__node,
    body[data-page='home'] .tfp-network__node--top,
    body[data-page='home'] .tfp-network__node--left,
    body[data-page='home'] .tfp-network__node--right,
    body[data-page='home'] .tfp-network__node--bottom-left,
    body[data-page='home'] .tfp-network__node--bottom-right,
    body[data-page='home'] .tfp-network__node--bottom {
        width: 205px !important;
        min-width: 205px !important;
        max-width: 205px !important;
        min-height: 88px !important;
    }
}

/* Zamiast sztucznego "4 role" — sześć realnych obszarów platformy. */
body[data-page='home'] .tfp-home-audience__head {
    max-width: 860px !important;
}

body[data-page='home'] .tfp-home-audience__head p {
    max-width: 780px !important;
    margin: 9px 0 0 !important;
    color: #60718b !important;
    font-size: 13px !important;
    line-height: 1.55 !important;
    font-weight: 600 !important;
}

body[data-page='home'] .tfp-home-audience__grid--features {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
}

body[data-page='home'] .tfp-home-audience__grid--features .tfp-home-audience__item {
    min-height: 86px !important;
}

body[data-page='home'] .tfp-home-audience__grid--features .tfp-home-audience__copy strong {
    white-space: normal !important;
    text-overflow: clip !important;
}

body[data-page='home'] .tfp-home-audience__item:nth-child(5)::before { background: #0ea5e9 !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(6)::before { background: #f43f5e !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(5) .tfp-home-audience__icon { background: #e8f7ff !important; }
body[data-page='home'] .tfp-home-audience__item:nth-child(6) .tfp-home-audience__icon { background: #fff0f3 !important; }

@media (max-width: 820px) {
    body[data-page='home'] .tfp-home-audience__grid--features {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 720px) {
    body[data-page='home'] .tfp-home-audience__head p {
        margin-top: 6px !important;
        font-size: 10px !important;
        line-height: 1.4 !important;
    }

    body[data-page='home'] .tfp-home-audience__grid--features .tfp-home-audience__item {
        min-height: 70px !important;
    }
}

/* =========================================================
   HOME HERO — więcej pionowego miejsca pod siecią modułów
   Naprawa: hint nie nachodzi na Panel trenera, statystyki niżej,
   tło hero obejmuje całość. Tylko desktop.
   ========================================================= */
@media (min-width: 981px) {
    body[data-page='home'] .hero.hero-product.hero-product--network,
    body[data-page='home'] .hero-product.hero-product--network {
        min-height: 710px !important;
        padding-top: 48px !important;
        padding-bottom: 38px !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 560px !important;
        height: 560px !important;
        overflow: visible !important;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -54px !important;
        z-index: 7 !important;
        white-space: nowrap !important;
    }

    body[data-page='home'] .hero-product__bottom {
        margin-top: 24px !important;
    }
}

/* Typowy laptop 1366/1440 × ~768–900: nadal wszystko mieści się w hero. */
@media (min-width: 981px) and (max-height: 900px) {
    body[data-page='home'] .hero.hero-product.hero-product--network,
    body[data-page='home'] .hero-product.hero-product--network {
        min-height: 690px !important;
        padding-top: 38px !important;
        padding-bottom: 30px !important;
    }

    body[data-page='home'] .hero-product__visual {
        min-height: 530px !important;
        height: 530px !important;
    }

    body[data-page='home'] .tfp-network__hint {
        bottom: -50px !important;
        font-size: 12px !important;
    }

    body[data-page='home'] .hero-product__bottom {
        margin-top: 18px !important;
    }
}
