
/* ==========================================================================
   Live patch v1.8.7 — Main home hero typewriter + Home-2 scan/blog
   ========================================================================== */

.hero__typewriter {
	color: var(--fp-teal-400, #2dd4bf) !important;
	min-width: 0.5ch;
}

.hero__title-line--typed {
	color: #ffffff;
}

/* Show transparency section even before JS */
.qr-premium [data-qr-reveal],
.qr-premium [data-qr-reveal].is-visible {
	opacity: 1 !important;
	transform: none !important;
}

/* Home-2 Transparency redesign */
.hv2-scan {
	position: relative;
	overflow: hidden;
	background: #ffffff;
	padding: clamp(72px, 9vw, 110px) 0;
}

.hv2-scan__bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	overflow: hidden;
}

.hv2-scan__hex {
	position: absolute;
	inset: -20% -10%;
	opacity: 0.5;
	background-image:
		linear-gradient(30deg, rgba(8, 47, 99, 0.04) 12%, transparent 12.5%, transparent 87%, rgba(8, 47, 99, 0.04) 87.5%),
		linear-gradient(90deg, rgba(79, 209, 197, 0.07) 1px, transparent 1px),
		linear-gradient(rgba(79, 209, 197, 0.07) 1px, transparent 1px);
	background-size: 44px 76px, 22px 38px, 22px 38px;
}

.hv2-scan__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
	opacity: 0.4;
}

.hv2-scan__glow--a {
	width: 380px;
	height: 380px;
	top: 8%;
	left: -6%;
	background: rgba(79, 209, 197, 0.14);
}

.hv2-scan__glow--b {
	width: 320px;
	height: 320px;
	bottom: 0;
	right: -4%;
	background: rgba(8, 47, 99, 0.08);
}

.hv2-scan .container {
	position: relative;
	z-index: 1;
}

.hv2-scan__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--hv2-teal, #4fd1c5);
	margin: 0 0 14px;
}

.hv2-scan__lead {
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--hv2-text-muted, #5a7494);
	margin: 0 0 24px;
	max-width: 52ch;
}

.hv2-scan__visual-stage {
	position: relative;
	width: min(100%, 580px);
	margin: 0 auto;
	padding: 10px;
}

.hv2-scan__orbit {
	position: absolute;
	inset: -5%;
	border-radius: 50%;
	border: 1px dashed rgba(79, 209, 197, 0.28);
	animation: hv2-orbit-spin 24s linear infinite;
}

.hv2-scan__pulse {
	position: absolute;
	inset: 6%;
	border-radius: 20px;
	background: radial-gradient(ellipse at center, rgba(79, 209, 197, 0.16), transparent 70%);
	animation: hv2-scan-pulse 4s ease-in-out infinite;
}

.hv2-scan__hero-img {
	position: relative;
	z-index: 2;
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 24px 56px rgba(8, 47, 99, 0.14);
	animation: hv2-img-float 6s ease-in-out infinite;
}

@keyframes hv2-orbit-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes hv2-scan-pulse {
	0%, 100% { opacity: 0.55; transform: scale(1); }
	50% { opacity: 1; transform: scale(1.03); }
}

@keyframes hv2-img-float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

[data-hv2-reveal].is-visible,
.hv2-scan [data-hv2-reveal] {
	opacity: 1 !important;
	transform: none !important;
}

/* Home-2 Blog horizontal carousel */
.hv2-blog {
	background: linear-gradient(180deg, #f8fbfe 0%, #eef4f8 100%);
	padding: clamp(72px, 9vw, 110px) 0;
}

.hv2-blog__eyebrow {
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--hv2-teal, #4fd1c5);
	margin: 0 0 10px;
}

.hv2-blog__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 32px;
}

.hv2-blog__carousel {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.hv2-blog__track {
	display: flex;
	gap: 22px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	padding: 8px 4px 16px;
	-ms-overflow-style: none;
	scrollbar-width: none;
	flex: 1;
	min-width: 0;
}

.hv2-blog__track::-webkit-scrollbar {
	display: none;
}

.hv2-blog__nav {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #cbd5e1;
	border-radius: 50%;
	background: #fff;
	color: var(--hv2-navy, #082f63);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.hv2-blog__nav:hover {
	background: var(--hv2-teal, #4fd1c5);
	color: #fff;
	border-color: var(--hv2-teal, #4fd1c5);
}

.hv2-blog-card {
	flex: 0 0 min(340px, 82vw);
	scroll-snap-align: start;
}

.hv2-blog-card__link {
	display: flex;
	flex-direction: column;
	height: 100%;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(8, 47, 99, 0.1);
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 32px rgba(8, 47, 99, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hv2-blog-card__link:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 44px rgba(8, 47, 99, 0.14);
}

.hv2-blog-card__media {
	position: relative;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: linear-gradient(135deg, #e8f4f8, #d4e8f0);
}

.hv2-blog-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.hv2-blog-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #d4e8f0, #b8dce8);
}

.hv2-blog-card__cat {
	position: absolute;
	bottom: 12px;
	left: 14px;
	z-index: 2;
	font-size: 0.625rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	background: rgba(79, 209, 197, 0.92);
	padding: 5px 10px;
	border-radius: 4px;
}

.hv2-blog-card__link:hover .hv2-blog-card__media img {
	transform: scale(1.05);
}

.hv2-blog-card__body {
	padding: 20px 22px 24px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	flex: 1;
}

.hv2-blog-card__date {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--hv2-teal, #4fd1c5);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.hv2-blog-card__title {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--hv2-navy, #082f63);
	line-height: 1.35;
}

.hv2-blog-card__excerpt {
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: var(--hv2-text-muted, #5a7494);
}

.hv2-blog-card__read {
	margin-top: auto;
	font-size: 0.8125rem;
	font-weight: 700;
	color: var(--hv2-teal, #4fd1c5);
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

/* Single blog post */
.content-page--single {
	padding: clamp(48px, 8vw, 88px) 0;
	background: linear-gradient(180deg, #f8fbfe 0%, #fff 100%);
}

.single-post__hero {
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 28px;
	box-shadow: 0 20px 50px rgba(0, 33, 55, 0.12);
}

.single-post__hero img {
	display: block;
	width: 100%;
	height: auto;
	max-height: 420px;
	object-fit: cover;
}

.single-post__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 20px;
	font-size: 0.8125rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--fp-teal-500, #00a3c4);
	margin-bottom: 16px;
}

.single-post__title {
	font-size: clamp(1.875rem, 4vw, 2.75rem);
	font-weight: 800;
	line-height: 1.15;
	color: var(--fp-navy-900, #002137);
	margin: 0 0 28px;
}

.single-post__content {
	font-size: 1.0625rem;
	line-height: 1.8;
	color: rgba(0, 33, 55, 0.82);
}

.single-post__content h2,
.single-post__content h3 {
	color: var(--fp-navy-900, #002137);
	margin: 2em 0 0.75em;
}

.single-post__content p {
	margin: 0 0 1.25em;
}

.single-post__back {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 40px;
	font-weight: 700;
	color: var(--fp-teal-500, #00a3c4);
	text-decoration: none;
}

.single-post__back:hover {
	text-decoration: underline;
}

@media (max-width: 767px) {
	.hv2-blog__nav {
		display: none;
	}
}

@media (min-width: 900px) {
	.hv2-scan__grid {
		grid-template-columns: 1fr 1fr;
		align-items: center;
	}
}


/* FAQ v2 fallback */
/* ==========================================================================
   fp-faq-v2 — pill accordion (Formal Peptides)
   ========================================================================== */

.fp-faq-v2 {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;
}

.fp-faq-v2__item {
	border: none;
	background: transparent;
	box-shadow: none;
	margin: 0;
	padding: 0;
}

.fp-faq-v2__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	width: 100%;
	margin: 0;
	padding: 1rem 1.375rem;
	border: none;
	border-radius: 999px;
	background: #eef4f9;
	color: #002137;
	font-family: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.45;
	text-align: left;
	cursor: pointer;
	box-shadow: none;
	outline: none;
	-webkit-appearance: none;
	appearance: none;
	transition: background-color 0.25s ease, color 0.25s ease;
}

.fp-faq-v2__trigger:hover {
	background: #e3edf6;
}

.fp-faq-v2__trigger:focus-visible {
	outline: 2px solid #00a3c4;
	outline-offset: 2px;
}

.fp-faq-v2__question {
	flex: 1;
	min-width: 0;
	color: inherit;
}

.fp-faq-v2__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	flex-shrink: 0;
	border-radius: 50%;
	background: rgba(0, 163, 196, 0.15);
	color: #002137;
	transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.fp-faq-v2__icon::before,
.fp-faq-v2__icon::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	background: currentColor;
	border-radius: 1px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.fp-faq-v2__icon::before {
	width: 12px;
	height: 2px;
}

.fp-faq-v2__icon::after {
	width: 2px;
	height: 12px;
}

.fp-faq-v2__panel {
	border: none;
	background: transparent;
	margin: 0;
	padding: 0;
	box-shadow: none;
}

.fp-faq-v2__panel[hidden] {
	display: none !important;
}

.fp-faq-v2__answer {
	padding: 0.25rem 1.375rem 1.25rem;
}

.fp-faq-v2__answer p {
	margin: 0 0 0.75rem;
	font-size: 0.875rem;
	font-weight: 400;
	color: #475569;
	line-height: 1.65;
}

.fp-faq-v2__answer p:last-child {
	margin-bottom: 0;
}

.fp-faq-v2__item.is-open {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 10px 28px rgba(0, 33, 55, 0.1);
}

.fp-faq-v2__item.is-open .fp-faq-v2__trigger {
	background: #002137;
	color: #ffffff;
	border-radius: 14px 14px 0 0;
}

.fp-faq-v2__item.is-open .fp-faq-v2__trigger:hover {
	background: #002137;
}

.fp-faq-v2__item.is-open .fp-faq-v2__icon {
	background: rgba(255, 255, 255, 0.18);
	color: #ffffff;
}

.fp-faq-v2__item.is-open .fp-faq-v2__icon::after {
	transform: translate(-50%, -50%) scaleY(0);
	opacity: 0;
}

.fp-faq-v2__item.is-open .fp-faq-v2__panel {
	background: #ffffff;
}

.faq-block .fp-faq-v2 {
	background: #ffffff;
	border-radius: 16px;
	padding: 8px;
	box-shadow: 0 8px 32px rgba(0, 33, 55, 0.08);
}

.faq-page__accordion-card .fp-faq-v2 {
	padding: 4px 0;
}
