/**
 * Theme enhancements: a11y, typography scale, social-proof mobile, horizontal scroll + Lenis.
 */

/* ============================================================
   POST-HERO STACKING: all siblings after .hero-pin must
   sit above the sticky hero (z-index 5, position relative).
   The JS only adds section-rise to the FIRST sibling;
   every subsequent block needs the same stacking context.
   ============================================================ */
.hero-pin ~ *:not(.hero-pin):not(script):not(style):not(.person-modal):not(.testimonial-modal):not(.report-modal) {
	position: relative;
	z-index: 5;
}

/* ============================================================
   GLOBAL SECTION SPACING REDUCTION
   ============================================================ */
section.section,
.section {
	padding: 80px 0 !important;
}
section.section-tight,
.section-tight {
	padding: 56px 0 !important;
}
section.features,
.features {
	padding-top: 32px !important;
	padding-bottom: 32px !important;
}
.features-intro {
	padding: 20px 0 16px !important;
}
section.tiers,
.tiers {
	padding: 32px 0 !important;
}
section.proof,
.proof {
	padding: 64px 0 !important;
}
.proof-head {
	margin-bottom: 32px !important;
}
section.editorial-carousel,
.editorial-carousel {
	padding: 64px 0 !important;
}
section.contact-faq,
.contact-faq {
	padding: 72px 0 !important;
}
.story-page-body {
	padding-bottom: 20px !important;
	margin-top: -60px !important;
}
section.prod-showcase,
.prod-showcase {
	padding-top: 40px !important;
	padding-bottom: 64px !important;
}
section.sample-benefits,
.sample-benefits {
	padding: 64px 0 !important;
}
section.technology-list,
.technology-list {
	padding: 72px 0 !important;
}
section.labs,
.labs {
	padding: 72px 0 !important;
}
section.product-steps,
.product-steps {
	padding: 16px 0 36px !important;
}

@media (max-width: 880px) {
	section.section,
	.section {
		padding: 48px 0 !important;
	}
	section.section-tight,
	.section-tight {
		padding: 36px 0 !important;
	}
	section.features,
	.features {
		padding-top: 20px !important;
		padding-bottom: 20px !important;
	}
	.features-intro {
		padding: 12px var(--gutter, 18px) 10px !important;
	}
	section.tiers,
	.tiers {
		padding: 20px 0 !important;
	}
	section.proof,
	.proof {
		padding: 40px 0 !important;
	}
	section.editorial-carousel,
	.editorial-carousel {
		padding: 40px 0 !important;
	}
	section.contact-faq,
	.contact-faq {
		padding: 48px 0 !important;
	}
	.story-page-body {
		padding-bottom: 12px !important;
		margin-top: -36px !important;
	}
	section.prod-showcase,
	.prod-showcase {
		padding-top: 24px !important;
		padding-bottom: 40px !important;
	}
	section.technology-list,
	.technology-list {
		padding: 48px 0 !important;
	}
	section.labs,
	.labs {
		padding: 48px 0 !important;
	}
	section.product-steps,
	.product-steps {
		padding: 10px 0 28px !important;
	}
	body.single-product .product-steps-grid,
	.product-steps .product-steps-grid {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		touch-action: pan-x pan-y pinch-zoom;
		overscroll-behavior-x: contain;
		gap: 14px !important;
		padding-bottom: 6px;
		grid-template-columns: none !important;
	}
	body.single-product .product-steps-card,
	.product-steps .product-steps-card {
		scroll-snap-align: start;
		flex: 0 0 78vw !important;
		min-width: 78vw !important;
		max-width: 78vw !important;
	}
}

/* ============================================================
   ADVANCED LABS — GRID MODE (3×4 Bento)
   Layout:
     "c1  c2  c2  c2"
     "c1  c3  c4  c4"
     "c5  c5  c6  c6"
   ============================================================ */
section.labs.labs-grid-mode,
.labs.labs-grid-mode {
	background: #fff !important;
	padding: 64px 0 !important;
}

.lgm-title {
	font-size: clamp(28px, 3.5vw, 46px) !important;
	font-weight: 800 !important;
	letter-spacing: -0.03em !important;
	line-height: 1.08 !important;
	color: #0f1b2c !important;
	margin: 0 0 28px !important;
}

.lgm {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: repeat(3, minmax(0, 1fr));
	grid-template-areas:
		"c1  c2  c2  c2"
		"c1  c3  c4  c4"
		"c5  c5  c6  c6";
	gap: 14px;
	height: clamp(680px, calc(100vh - 120px), 920px);
}

/* — Cards — */
.lgm-c {
	border-radius: 20px;
	background: #162236;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.lgm-c:hover {
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
	transform: translateY(-2px);
}

/* Image as card bg with overlay */
.lgm-c--has-img {
	position: relative;
}
.lgm-c--has-img .lgm-c-img {
	position: absolute;
	inset: 0;
	z-index: 0;
}
.lgm-c--has-img .lgm-c-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.lgm-c--has-img::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 16, 28, 0.25) 0%, rgba(10, 16, 28, 0.85) 100%);
	z-index: 1;
	pointer-events: none;
	border-radius: 20px;
}
.lgm-c--has-img .lgm-c-copy {
	position: relative;
	z-index: 2;
}
.lgm-c--has-img h3 { color: #fff !important; }
.lgm-c--has-img p { color: rgba(255, 255, 255, 0.7) !important; }

/* Copy area */
.lgm-c-copy {
	padding: 24px 22px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.lgm-c h3 {
	font-size: 1.1rem;
	font-weight: 700;
	color: #fff;
	margin: 0 0 6px;
	line-height: 1.25;
}
.lgm-c p {
	font-size: 0.85rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.65);
	margin: 0;
}

/* No-image card: hide empty img div */
.lgm-c:not(.lgm-c--has-img) .lgm-c-img { display: none; }

/* Grid placement — 3 rows × 4 cols */
.lgm-c1 { grid-area: c1; }
.lgm-c2 { grid-area: c2; }
.lgm-c3 { grid-area: c3; }
.lgm-c4 { grid-area: c4; }
.lgm-c5 { grid-area: c5; }
.lgm-c6 { grid-area: c6; }

/* Tall card (c1) — slightly darker bg when no image */
.lgm-c1:not(.lgm-c--has-img) {
	background: #0f1b2c;
}
.lgm-c1:not(.lgm-c--has-img) h3 { color: #fff; }
.lgm-c1:not(.lgm-c--has-img) p { color: rgba(255, 255, 255, 0.65); }

/* Wide card (c2) — accent bg when no image */
.lgm-c2:not(.lgm-c--has-img) {
	background: linear-gradient(135deg, #1a3a5c 0%, #0f1b2c 100%);
}
.lgm-c2:not(.lgm-c--has-img) h3 { color: #fff; }
.lgm-c2:not(.lgm-c--has-img) p { color: rgba(255, 255, 255, 0.65); }

/* — Responsive: tablet — */
@media (max-width: 1024px) {
	.lgm {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: auto auto auto auto;
		grid-template-areas:
			"c1  c2"
			"c1  c3"
			"c4  c5"
			"c6  c6";
		height: auto;
	}
	.lgm-title {
		margin-bottom: 22px !important;
	}
}

/* — Responsive: mobile — */
@media (max-width: 880px) {
	section.labs.labs-grid-mode,
	.labs.labs-grid-mode {
		padding: 48px 0 !important;
	}
	.lgm-title {
		font-size: 26px !important;
		margin-bottom: 18px !important;
	}
	.lgm {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto auto;
		grid-template-areas:
			"c1  c2"
			"c3  c4"
			"c5  c5"
			"c6  c6";
		gap: 10px;
		height: auto;
	}
	.lgm-c {
		border-radius: 16px;
		min-height: 240px;
	}
	.lgm-c5,
	.lgm-c6 {
		min-height: 260px;
	}
	.lgm-c--has-img::after { border-radius: 16px; }
	.lgm-c-copy { padding: 18px 16px; }
	.lgm-c h3 { font-size: 0.95rem; }
	.lgm-c p { font-size: 0.8rem; }
}

/* ============================================================
   EDITORIAL CAROUSEL — VISUAL UPGRADE + MOBILE SWIPE
   ============================================================ */
.editorial-slide {
	background: linear-gradient(145deg, #0f1b2c 0%, #162236 60%, #1a2d45 100%) !important;
	border: 1px solid rgba(47, 163, 242, 0.10) !important;
	color: #fff !important;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18) !important;
}
.editorial-slide-visual {
	background: #0d1726 !important;
}
.editorial-slide-copy {
	background: transparent !important;
}
.editorial-slide-copy h3 {
	color: #fff !important;
}
.editorial-slide-description {
	color: rgba(255, 255, 255, 0.65) !important;
}
.editorial-slide-points li {
	color: rgba(255, 255, 255, 0.85) !important;
}
.editorial-slide-points li::before {
	background: #2FA3F2 !important;
	box-shadow: 0 0 0 6px rgba(47, 163, 242, 0.15) !important;
}
.editorial-slide-eyebrow,
.editorial-slide-placeholder-mark {
	background: rgba(47, 163, 242, 0.12) !important;
	color: #2FA3F2 !important;
}
.editorial-slide-copy .btn {
	background: #2FA3F2 !important;
	color: #fff !important;
	border-color: #2FA3F2 !important;
}
.editorial-slide-copy .btn:hover {
	background: #1b8ad8 !important;
}

.editorial-carousel-head h2 {
	font-weight: 700 !important;
}

@media (max-width: 880px) {
	.editorial-carousel-viewport {
		overflow: visible !important;
	}
	.editorial-carousel-track {
		overflow-x: auto !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		gap: 14px;
		padding-bottom: 8px;
	}
	.editorial-carousel-track > * {
		scroll-snap-align: start;
		flex: 0 0 85vw !important;
		min-width: 85vw !important;
	}
	.editorial-carousel-controls {
		display: none !important;
	}
}

/* ============================================================
   LABS VISUAL — MOBILE: less dead space
   ============================================================ */
@media (max-width: 880px) {
	.labs-visual {
		aspect-ratio: auto !important;
		max-height: 360px;
		background: #142133 !important;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.labs-visual img {
		width: auto !important;
		height: auto !important;
		max-height: 320px;
		max-width: 90%;
		object-fit: contain !important;
	}
}

/* ——— Sample Benefits: zero cropping ——— */
section.sample-benefits .sample-benefits-visual,
.sample-benefits .sample-benefits-visual {
	aspect-ratio: unset !important;
	height: auto !important;
	max-height: none !important;
	overflow: hidden !important;
	border-radius: 28px !important;
}
section.sample-benefits .sample-benefits-visual img,
.sample-benefits .sample-benefits-visual img {
	width: 100% !important;
	height: auto !important;
	max-height: none !important;
	object-fit: unset !important;
	display: block !important;
}

/* ——— Sample Benefits head ——— */
.sample-benefits-head {
	max-width: 680px;
	margin-bottom: 36px;
}
.sample-benefits-head h2 {
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 700;
	letter-spacing: -0.03em;
	line-height: 1.05;
	margin-bottom: 10px;
}
.sample-benefits-head p {
	font-size: 16px;
	line-height: 1.6;
	color: var(--text-muted, rgba(0,0,0,.55));
	max-width: 52ch;
}

/* ——— Footer brand column fix ——— */
.footer-brand-col .logo {
	display: block !important;
	margin-bottom: 14px;
}
.footer-brand-col .logo img,
.footer-brand-col .logo .custom-logo {
	margin: 0 !important;
}
.footer-brand-col p {
	margin-top: 0;
}

/* ——— Skip link ——— */
.whoop-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: 0.75rem 1rem;
	background: var(--bg-dark, #000);
	color: var(--text-on-dark, #fff);
	font-weight: 600;
	text-decoration: none;
	border-radius: 0 0 8px 0;
}
.whoop-skip-link:focus {
	left: var(--gutter, 18px);
	top: var(--gutter, 18px);
	outline: 2px solid var(--primary, #2fa3f2);
	outline-offset: 2px;
}

/* :focus-visible for keyboard users */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
	outline: 2px solid var(--primary, #2fa3f2);
	outline-offset: 2px;
}

/* ——— Heading scale (desktop caps; mobile clamps unchanged at low end) ——— */
:root {
	--display: clamp(48px, 7vw, 92px);
	--h1: clamp(36px, 5vw, 60px);
	--h2: clamp(28px, 3.5vw, 46px);
}

/* ——— Lenis disabled: force native scroll everywhere ——— */
html.lenis,
html.lenis body,
html.lenis-smooth,
html.lenis-smooth body {
	scroll-behavior: auto !important;
	overflow-y: auto !important;
}
html.lenis-stopped {
	overflow: auto !important;
}
body.whoop-lenis-native {
	overflow-y: auto !important;
}

/* ——— Reduced motion ——— */
@media (prefers-reduced-motion: reduce) {
	html.lenis,
	html.lenis body {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}

	.proof-card:hover,
	.proof-card.proof-quote:hover {
		transform: none !important;
	}
}

/* ——— Social proof: premium 2-column mobile (overrides dist 700px 1-col) ——— */
@media (max-width: 700px) {
	.proof-head {
		margin-bottom: 24px;
	}

	.proof-head h2 {
		line-height: 1.08;
		margin-bottom: 12px;
	}

	.proof-head p {
		line-height: 1.45;
	}

	.proof-mosaic {
		display: grid !important;
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
		grid-auto-rows: auto !important;
		grid-auto-flow: row;
		align-items: stretch;
		gap: 12px !important;
		width: 100%;
	}

	.proof-mosaic .proof-card {
		min-width: 0;
		min-height: 0;
		width: 100%;
		overflow: hidden;
		border-radius: 14px;
	}

	/* ACF wide/large: tek hücre — tam satır kaplama yok */
	.proof-mosaic .proof-card.span-2,
	.proof-mosaic .proof-card.row-2 {
		grid-column: auto !important;
		grid-row: auto !important;
	}

	.proof-card:hover,
	.proof-card.proof-quote:hover {
		transform: none !important;
	}

	/* Görsel kartlar: sabit oran, medya taşmasın */
	.proof-card.proof-image {
		position: relative;
		width: 100%;
		aspect-ratio: 4 / 5;
		min-height: 0;
	}

	.proof-card.proof-image img,
	.proof-card.proof-image video {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
		transform: none !important;
	}

	.proof-card.proof-image .meta {
		left: 12px;
		right: 48px;
		bottom: 12px;
	}

	.proof-card.proof-image .meta-name {
		font-size: clamp(12px, 3.4vw, 15px);
		line-height: 1.2;
	}

	.proof-card.proof-image .meta-role {
		font-size: 11px;
	}

	.proof-plus {
		right: 10px;
		bottom: 10px;
		width: 34px;
		height: 34px;
		flex-shrink: 0;
	}

	.proof-play {
		width: 52px;
		height: 52px;
	}

	.proof-play svg {
		width: 18px;
		height: 18px;
	}

	/* Alıntı kartları: görsel kartlarla aynı hücre oranı */
	.proof-card.proof-quote {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		aspect-ratio: 4 / 5;
		min-height: 0;
		padding: 14px 14px 16px;
		box-sizing: border-box;
	}

	.proof-card.proof-quote .proof-quote-text {
		flex: 1 1 auto;
		min-height: 0;
		font-size: clamp(13px, 3.6vw, 16px);
		line-height: 1.35;
		margin-bottom: 10px;
		overflow: hidden;
		overflow-wrap: anywhere;
		word-break: break-word;
		hyphens: auto;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 6;
		line-clamp: 6;
	}

	.proof-card.proof-quote .proof-quote-meta {
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		gap: 8px;
		flex-shrink: 0;
		min-width: 0;
	}

	.proof-card.proof-quote .proof-quote-meta > div {
		min-width: 0;
		flex: 1 1 auto;
	}

	.proof-card.proof-quote .meta-name {
		font-size: clamp(12px, 3.2vw, 14px);
		line-height: 1.2;
		overflow-wrap: anywhere;
	}

	.proof-card.proof-quote .meta-role {
		font-size: 11px;
	}

	.proof-card.proof-quote .proof-plus {
		position: static;
		width: 32px;
		height: 32px;
		flex-shrink: 0;
	}
}

/* ============================================================
   PROOF QUOTE CARDS — REDESIGNED TYPOGRAPHY
   Reference: quote-mark top-left, dark purple text,
   larger name, role below, subtle gradient bg.
   ============================================================ */
.proof-card.proof-quote {
	background: linear-gradient(180deg, #f8f9fd 0%, #eef1f8 100%) !important;
	padding: 32px !important;
}

.proof-quote-mark {
	color: #2FA3F2;
	margin-bottom: 20px;
	line-height: 1;
}

.proof-card.proof-quote .proof-quote-text {
	font-size: clamp(20px, 2.2vw, 26px) !important;
	font-weight: 700 !important;
	line-height: 1.28 !important;
	letter-spacing: -0.02em !important;
	color: #1a1040 !important;
	margin-bottom: auto !important;
}

.proof-card.proof-quote .meta-name {
	font-size: 18px !important;
	font-weight: 700 !important;
	color: #1a1040 !important;
	line-height: 1.25 !important;
}

.proof-card.proof-quote .meta-role {
	font-size: 14px !important;
	font-weight: 400 !important;
	color: rgba(26, 16, 64, 0.55) !important;
	margin-top: 4px !important;
}

.proof-card.proof-quote .proof-plus {
	background: var(--primary) !important;
	color: #fff !important;
}

@media (max-width: 700px) {
	.proof-card.proof-quote {
		padding: 18px 16px 16px !important;
	}

	.proof-quote-mark {
		margin-bottom: 12px;
	}

	.proof-quote-mark svg {
		width: 24px;
		height: 18px;
	}

	.proof-card.proof-quote .proof-quote-text {
		font-size: clamp(14px, 3.8vw, 18px) !important;
		line-height: 1.32 !important;
		-webkit-line-clamp: 7 !important;
		line-clamp: 7 !important;
	}

	.proof-card.proof-quote .meta-name {
		font-size: clamp(13px, 3.4vw, 15px) !important;
	}

	.proof-card.proof-quote .meta-role {
		font-size: 11px !important;
	}
}

/* ——— Horizontal feature track: Firefox + Lenis coexistence ——— */
.feature-track {
	overflow-x: auto;
	overflow-y: hidden;
	overscroll-behavior-x: contain;
	touch-action: pan-x pinch-zoom;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
}

/* ——— Mobile header: logo left, hamburger right (overrides built nav CSS) ——— */
@media (max-width: 880px) {
	.nav-inner .logo {
		order: 0;
		margin-left: 0;
		margin-right: 0;
		justify-content: flex-start;
		max-width: min(52vw, 200px);
	}

	.nav-inner .logo .custom-logo-link {
		justify-content: flex-start;
	}

	.nav-inner .logo img,
	.nav-inner .logo .custom-logo {
		object-position: left center;
	}

	.nav-inner .menu-toggle {
		order: 0;
		margin-left: auto;
	}

	.hero-product-detail {
		min-height: 100svh;
		padding-bottom: 0;
		background: #000;
		overflow: hidden;
	}

	.hero-product-detail .hero-content.container {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 14px;
		z-index: 2;
		padding: 0;
	}

	.hero-product-detail .hero-title,
	.hero-product-detail .hero-sub,
	.hero-product-detail .hero-actions {
		margin-left: 18px;
		margin-right: 18px;
	}

	.hero-product-detail .hero-title {
		margin-top: 0;
		font-size: clamp(2.85rem, 9.8vw, 4rem);
		line-height: 0.9;
		max-width: 7ch;
	}

	.hero-product-detail .hero-sub {
		max-width: 24ch;
		font-size: 0.96rem;
		line-height: 1.38;
	}

	.hero-product-detail .hero-actions {
		gap: 8px;
	}

	.hero-product-detail .hero-video,
	.hero-product-detail .hero-video-embed,
	.hero-product-detail .hero-poster {
		height: 100svh;
		object-position: center 42%;
	}

	.hero-product-detail .hero-poster {
		object-position: center 34%;
	}

	.hero-product-detail .hero-overlay {
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.24) 38%, rgba(0, 0, 0, 0.9) 100%);
		opacity: 1 !important;
	}
}

/* ——— Labs ISO certificates ——— */
.labs-iso-certs {
	display: flex;
	flex-wrap: nowrap;
	gap: 14px;
	margin: 22px 0 28px;
}

.labs-iso-cert {
	width: 72px;
	height: 72px;
	padding: 6px;
	border: 1px solid rgba(47, 163, 242, 0.18);
	border-radius: 14px;
	background: #fff;
	flex: 0 0 72px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.labs-iso-cert img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

@media (max-width: 880px) {
	.labs-iso-certs {
		margin: 18px 0 22px;
	}

	.labs-iso-cert {
		width: 60px;
		height: 60px;
		flex: 0 0 60px;
	}
}

/* ——— Feature slider arrows: hide on mobile ——— */
@media (max-width: 880px) {
	.features .slider-arrows {
		display: none !important;
	}
}

/* ——— Feature slider: swipeable cards ——— */
.features .feature-track {
	touch-action: pan-x pan-y pinch-zoom;
	overscroll-behavior-x: contain;
	scrollbar-width: none;
}

.features .feature-track::-webkit-scrollbar {
	display: none;
}

.features .feature-card,
.features .feature-card:hover {
	cursor: default;
	transform: none !important;
	aspect-ratio: auto !important;
}

.features .feature-card img {
	width: 100% !important;
	height: auto !important;
	object-fit: contain !important;
}

.features .feature-plus,
.features .feat-modal,
.features .feat-modal-card {
	display: none !important;
}

@media (max-width: 880px) {
	.features {
		padding-top: 44px;
		padding-bottom: 52px;
	}

	.features .feature-slider {
		margin-left: calc(var(--gutter, 18px) * -0.45);
		margin-right: calc(var(--gutter, 18px) * -0.45);
	}

	.features .feature-card {
		position: relative;
		aspect-ratio: auto;
		flex: 0 0 85% !important;
		display: block !important;
		padding: 0 !important;
		overflow: hidden;
		border-radius: 22px;
		background: #08111c;
	}

	.features .feature-card img {
		display: block !important;
		width: 100% !important;
		height: auto !important;
		max-height: none !important;
		object-fit: contain !important;
		object-position: center center !important;
		background: #08111c !important;
		padding: 0 !important;
		transform: none !important;
	}

	.features .feature-card::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(4, 12, 20, 0.1) 16%, rgba(4, 12, 20, 0.28) 50%, rgba(4, 12, 20, 0.72) 100%);
		pointer-events: none;
	}

	.features .feature-card .feature-card-content {
		position: absolute !important;
		left: 14px;
		right: 14px;
		bottom: 14px;
		z-index: 1;
		padding: 0 !important;
		background: transparent !important;
		pointer-events: none;
	}

	.features .feature-card .feature-card-content h3 {
		margin: 0;
		color: #fff;
		font-size: clamp(1.1rem, 4.4vw, 1.45rem);
		line-height: 1.08;
		text-shadow: 0 8px 28px rgba(0, 0, 0, 0.42);
	}
}

/* ——— Technology list: section-level dark surface, flatter inner structure ——— */
.technology-list {
	background: #142133;
	padding: clamp(40px, 6vw, 72px) 0;
}

.technology-list .technology-list-head h2,
.technology-list .technology-list-head p {
	color: #fff;
}

.technology-list .technology-list-shell {
	background: transparent;
	border-radius: 0;
	padding: 0;
	box-shadow: none;
}

.technology-list .technology-list-grid {
	align-items: stretch;
	gap: 22px;
}

.technology-list .technology-list-visuals {
	border-radius: 26px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	min-height: 100%;
	position: relative;
}

.technology-list .technology-list-visual {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}
.technology-list .technology-list-item-mobile-visual {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	position: relative;
}

.technology-list .technology-list-visual img,
.technology-list .technology-list-item-mobile-visual img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.technology-list .technology-list-items {
	border-radius: 0;
	background: transparent;
	padding: 0;
}

.technology-list .technology-list-item {
	border: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	padding-inline: 18px;
}

.technology-list .technology-list-item:first-child {
	border-top: 0;
}

.technology-list .technology-list-item-index {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	color: rgba(255, 255, 255, 0.78);
}

.technology-list .technology-list-item-copy h3 {
	color: #fff;
}

.technology-list .technology-list-item-copy p,
.technology-list .technology-list-head p {
	color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 880px) {
	.technology-list .technology-list-shell {
		padding: 0;
		border-radius: 0;
	}

	.technology-list .technology-list-grid {
		gap: 14px;
	}

	.technology-list .technology-list-items {
		padding: 0;
		background: transparent;
	}

	.technology-list .technology-list-item {
		position: relative;
		display: block;
		padding: 0;
		border-top: 0;
		overflow: hidden;
	}

	.technology-list .technology-list-item-mobile-visual {
		margin: 0;
		border-radius: 18px;
		background: #0f1b2c;
		padding: 0;
		overflow: hidden;
		aspect-ratio: auto !important;
		max-height: none !important;
		min-height: 280px;
	}

	.technology-list .technology-list-item-mobile-visual::after {
		content: "";
		position: absolute;
		inset: 0;
		background: linear-gradient(180deg, rgba(8, 15, 28, 0.08) 0%, rgba(8, 15, 28, 0.22) 36%, rgba(8, 15, 28, 0.84) 100%);
		pointer-events: none;
	}

	.technology-list .technology-list-item-mobile-visual img {
		width: 100% !important;
		height: 100% !important;
		max-height: none !important;
		object-fit: cover !important;
		object-position: center center !important;
		transform: none !important;
	}

	.technology-list .technology-list-item-index {
		position: absolute;
		top: 14px;
		left: 14px;
		z-index: 2;
		display: inline-flex;
		margin: 0;
	}

	.technology-list .technology-list-item-copy {
		position: absolute;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 2;
		margin-top: 0;
		padding: 18px 16px 18px;
	}

	.technology-list .technology-list-item-copy h3 {
		font-size: clamp(1.45rem, 5.2vw, 1.9rem);
		line-height: 1.05;
		margin-bottom: 8px;
	}

	.technology-list .technology-list-item-copy p {
		color: rgba(255, 255, 255, 0.86);
		font-size: 0.98rem;
		line-height: 1.45;
	}
}

/* ============================================================
   STORY PAGE ENHANCEMENTS
   ============================================================ */

/* ——— Hero: centered, immersive ——— */
.story-page-hero {
	min-height: min(82vh, 780px) !important;
	display: flex !important;
	align-items: flex-end !important;
	justify-content: center !important;
	padding-top: var(--header-h, 109px) !important;
	padding-bottom: 120px !important;
}
.story-page-hero-overlay {
	background:
		linear-gradient(180deg,
			rgba(6, 10, 20, 0.20) 0%,
			rgba(6, 10, 20, 0.10) 30%,
			rgba(6, 10, 20, 0.82) 100%
		) !important;
}
.story-page-hero-copy {
	text-align: center !important;
	max-width: 780px !important;
	margin: 0 auto !important;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.story-page-hero-copy h1,
.story-page-hero-copy h2 {
	font-size: clamp(32px, 5vw, 64px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.03em !important;
	font-weight: 700 !important;
	max-width: 20ch;
	margin-bottom: 14px !important;
}
.story-page-hero-copy p {
	font-size: 17px !important;
	max-width: 50ch;
	margin-bottom: 28px;
	color: rgba(255, 255, 255, 0.75) !important;
	line-height: 1.6 !important;
}
.story-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 0.95rem;
	font-weight: 600;
	border-radius: 50px;
	background: #2FA3F2;
	color: #fff;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 20px rgba(47, 163, 242, 0.25);
}
.story-hero-cta:hover {
	background: #1b8ad8;
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(47, 163, 242, 0.35);
}

/* ——— Curve softer ——— */
.story-page-hero-curve {
	height: 180px !important;
	bottom: -90px !important;
}

/* ——— Body: more breathing room ——— */
.story-page-body {
	padding-bottom: 100px !important;
}
.story-page-sections {
	gap: 0 !important;
}

/* ——— Sections: alternating full-bleed bands ——— */
.story-page-section {
	gap: 48px !important;
	padding: 72px 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.story-page-section:last-child {
	border-bottom: 0;
}
.story-page-section:nth-child(even) {
	/* same bg as odd sections */
}

/* ——— Visual: accent frame + depth ——— */
.story-page-section-visual {
	position: relative !important;
	border-radius: 24px !important;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.10) !important;
	overflow: hidden !important;
}
.story-page-section-visual::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 24px;
	border: 1px solid rgba(47, 163, 242, 0.12);
	pointer-events: none;
}
.story-page-section-visual img {
	transition: transform 0.5s var(--ease, ease) !important;
}
.story-page-section:hover .story-page-section-visual img {
	transform: scale(1.03);
}

/* ——— Copy: stronger hierarchy ——— */
.story-page-section-copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.story-page-section-copy h2 {
	font-size: clamp(26px, 3.5vw, 44px) !important;
	line-height: 1.08 !important;
	letter-spacing: -0.03em !important;
	margin-bottom: 18px !important;
	position: relative;
}
.story-page-section-copy h2::before {
	content: "";
	display: block;
	width: 40px;
	height: 3px;
	background: #2FA3F2;
	border-radius: 2px;
	margin-bottom: 16px;
}
.story-page-section.is-reversed .story-page-section-copy h2::before {
	margin-left: 0;
}
.story-page-section-text {
	font-size: 15.5px !important;
	line-height: 1.75 !important;
	color: var(--text-muted, rgba(0,0,0,.58)) !important;
}
.story-page-section-text p + p {
	margin-top: 16px !important;
}

/* ——— Bullets ——— */
.story-bullets {
	list-style: none !important;
	padding: 0 !important;
	margin: 22px 0 0 !important;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.story-bullets li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--text, #000);
}
.story-bullet-icon {
	flex-shrink: 0;
	margin-top: 2px;
	color: #2FA3F2;
}

/* ——— CTA button ——— */
.story-section-cta,
.story-page-section-copy .btn {
	margin-top: 28px !important;
	padding: 13px 28px !important;
	border-radius: 12px !important;
	font-weight: 600 !important;
	font-size: 0.9rem !important;
	display: inline-flex !important;
	width: auto !important;
}

/* ——— Section background variants ——— */
.story-section-light {
	background: var(--bg-elev-1, #f4f5f9);
	margin-left: calc(var(--gutter, 32px) * -1);
	margin-right: calc(var(--gutter, 32px) * -1);
	padding: 72px var(--gutter, 32px);
	border-radius: 0;
	border-bottom: 0;
}
.story-section-dark {
	background: #0f1b2c;
	margin-left: calc(var(--gutter, 32px) * -1);
	margin-right: calc(var(--gutter, 32px) * -1);
	padding: 72px var(--gutter, 32px);
	border-radius: 0;
	border-bottom: 0;
}
.story-section-dark .story-page-section-copy h2 {
	color: #fff;
}
.story-section-dark .story-page-section-copy h2::before {
	background: #2FA3F2;
}
.story-section-dark .story-page-section-text,
.story-section-dark .story-page-section-text p {
	color: rgba(255, 255, 255, 0.68) !important;
}
.story-section-dark .story-bullets li {
	color: rgba(255, 255, 255, 0.82);
}
.story-section-dark .story-page-section-copy .btn {
	background: #2FA3F2 !important;
	color: #fff !important;
	border-color: #2FA3F2 !important;
}

/* ——— Story page mobile ——— */
@media (max-width: 880px) {
	.story-page-hero {
		min-height: min(68vh, 520px) !important;
		padding-top: calc(var(--header-h, 101px) + 20px) !important;
		padding-bottom: 100px !important;
		align-items: flex-end !important;
	}
	.story-page-hero-copy h1,
	.story-page-hero-copy h2 {
		font-size: 28px !important;
	}
	.story-page-hero-copy p {
		font-size: 14px !important;
		margin-bottom: 20px;
	}
	.story-hero-cta {
		padding: 13px 26px;
		font-size: 0.88rem;
	}
	.story-page-hero-curve {
		height: 120px !important;
		bottom: -60px !important;
	}
	.story-page-section {
		padding: 48px 0 !important;
		gap: 28px !important;
	}
	.story-page-section:nth-child(even) {
		/* same bg as odd */
	}
	.story-page-section-visual {
		border-radius: 18px !important;
		max-width: 100% !important;
	}
	.story-page-section-copy h2::before {
		width: 32px;
		margin-bottom: 12px;
	}
	.story-page-section-copy .btn {
		width: 100% !important;
		justify-content: center !important;
	}
	.story-section-light,
	.story-section-dark {
		margin-left: calc(var(--gutter, 18px) * -1);
		margin-right: calc(var(--gutter, 18px) * -1);
		padding: 48px var(--gutter, 18px);
	}
}

/* ——— About hero: stronger right visual and less dead space ——— */
.about-hero .about-hero-grid {
	align-items: center;
	gap: clamp(24px, 4vw, 56px);
}

.about-hero .about-hero-content h2 {
	max-width: 12ch;
}

.about-hero .about-hero-visual {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: clamp(18px, 2.4vw, 30px);
	border-radius: 36px;
	background:
		radial-gradient(circle at 26% 18%, rgba(173, 124, 226, 0.28), transparent 28%),
		radial-gradient(circle at 74% 70%, rgba(47, 163, 242, 0.22), transparent 30%),
		linear-gradient(180deg, #173050 0%, #102133 100%);
	box-shadow: none;
	overflow: hidden;
	min-height: clamp(360px, 40vw, 560px);
}

.about-hero .about-hero-visual::after {
	content: "";
	position: absolute;
	inset: auto 10% -18% 10%;
	height: 58%;
	border: 0;
	border-radius: 999px;
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 68%);
	pointer-events: none;
}

.about-hero .about-hero-visual::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(135deg, rgba(255, 255, 255, 0.05), transparent 34%),
		linear-gradient(315deg, rgba(255, 255, 255, 0.04), transparent 30%);
	pointer-events: none;
}

.about-hero .about-hero-visual img {
	position: relative;
	z-index: 1;
	width: min(100%, 760px);
	max-height: 88%;
	object-fit: contain;
	object-position: center bottom;
	filter: drop-shadow(0 26px 46px rgba(8, 15, 28, 0.34));
}

@media (max-width: 880px) {
	.about-hero .about-hero-grid {
		gap: 18px;
	}

	.about-hero .about-hero-visual {
		min-height: 280px;
		padding: 12px;
		border-radius: 24px;
	}

	.about-hero .about-hero-visual::after {
		inset: auto 5% -10% 5%;
		height: 46%;
		border-radius: 999px;
	}

	.about-hero .about-hero-visual img {
		width: min(100%, 460px);
		max-height: 96%;
	}
}

/* ——— Homepage hero fullscreen fix ——— */
.hero-poster {
	object-fit: cover !important;
	object-position: center center !important;
	width: 100% !important;
	height: 100% !important;
}

.hero-video,
.hero-video-embed {
	position: absolute !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	overflow: hidden !important;
}

.hero-video-frame {
	position: absolute !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	width: max(100vw, 177.78vh) !important;
	height: max(56.25vw, 100vh) !important;
	max-width: none !important;
	max-height: none !important;
	aspect-ratio: auto !important;
	border: 0 !important;
}

.hero video.hero-video {
	position: absolute !important;
	top: 0 !important;
	left: 0 !important;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: center center !important;
}

/* ============================================================
   PRODUCT SHOWCASE BLOCK
   ============================================================ */
.prod-showcase {
	padding: 40px 0 60px;
	background: #fff;
}

.prod-showcase-intro {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 36px;
}
.prod-showcase-intro h2 {
	margin-bottom: 8px;
}
.prod-showcase-intro p {
	font-size: 0.98rem;
	color: var(--text-muted, rgba(0,0,0,.62));
	line-height: 1.55;
}

.prod-showcase-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
	align-items: start;
	max-width: 880px;
	margin: 0 auto;
}

/* — Card — */
.prod-card {
	position: relative;
	background: #fff;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 16px;
	padding: 24px 22px 22px;
	transition: box-shadow 0.3s ease;
}
.prod-card:hover {
	box-shadow: 0 6px 24px rgba(0,0,0,0.07);
}

/* Badge */
.prod-badge {
	position: absolute;
	top: 14px;
	left: 14px;
	padding: 4px 12px;
	border-radius: 16px;
	font-size: 0.75rem;
	font-weight: 700;
	color: #fff;
	z-index: 2;
}

/* Header: logo + subtitle */
.prod-card-header {
	text-align: center;
	margin-bottom: 14px;
}
.prod-logo {
	max-height: 40px;
	width: auto;
	margin: 0 auto 4px;
}
.prod-subtitle {
	font-size: 0.8rem;
	color: var(--text-muted, rgba(0,0,0,.55));
}

/* Visual */
.prod-card-visual {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 14px;
}
.prod-card-visual img {
	max-height: 240px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

/* Rating */
.prod-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 6px;
}
.prod-stars {
	display: flex;
	gap: 1px;
	color: #f5a623;
}
.prod-rating-text {
	font-size: 0.82rem;
	color: var(--text-muted, rgba(0,0,0,.55));
}

/* Title + Certs row */
.prod-title-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 10px;
}
.prod-card-title {
	font-size: 1.15rem;
	font-weight: 700;
	color: var(--text, #000);
	margin: 0;
}

/* Certificates — inline next to title */
.prod-certs {
	display: flex;
	gap: 6px;
	flex-shrink: 0;
}
.prod-cert {
	width: 36px;
	height: 36px;
	padding: 3px;
	border: 1px solid rgba(0,0,0,0.08);
	border-radius: 8px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.prod-cert img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Price */
.prod-price {
	display: flex;
	align-items: baseline;
	gap: 10px;
	margin-bottom: 12px;
}
.prod-price-old {
	font-size: 0.95rem;
	color: var(--text-dim, rgba(0,0,0,.4));
	text-decoration: line-through;
}
.prod-price-new {
	font-size: 1.25rem;
	font-weight: 700;
	color: #16a34a;
}

/* Features */
.prod-features {
	list-style: none;
	padding: 0;
	margin: 0 0 16px;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.prod-features li {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	font-size: 0.88rem;
	line-height: 1.4;
	color: var(--text, #000);
}
.prod-features li.highlight {
	font-weight: 600;
}
.prod-features li.highlight .prod-check {
	color: #16a34a;
}
.prod-check {
	flex-shrink: 0;
	margin-top: 1px;
	color: var(--text-dim, rgba(0,0,0,.45));
}

/* Actions */
.prod-card-actions {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.prod-cta {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px 18px;
	border-radius: 10px;
	font-size: 0.92rem;
	font-weight: 600;
	color: #fff;
	background: #2FA3F2;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}
.prod-cta:hover {
	background: #1b8ad8;
	transform: translateY(-1px);
}
.prod-cta-secondary {
	display: block;
	width: 100%;
	text-align: center;
	padding: 11px 18px;
	border-radius: 10px;
	font-size: 0.88rem;
	font-weight: 600;
	color: var(--text, #000);
	background: transparent;
	border: 1px solid rgba(0,0,0,0.12);
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}
.prod-cta-secondary:hover {
	background: rgba(0,0,0,0.03);
	border-color: rgba(0,0,0,0.22);
}

/* Product showcase — mobile */
@media (max-width: 740px) {
	.prod-showcase {
		padding: 24px 0 40px;
	}
	.prod-showcase-intro {
		margin-bottom: 24px;
	}
	.prod-showcase-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		max-width: 100%;
	}
	.prod-card {
		padding: 20px 18px 18px;
	}
	.prod-badge {
		position: static;
		display: inline-block;
		margin-bottom: 10px;
	}
	.prod-card-visual img {
		max-height: 200px;
	}
	.prod-title-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}
}

/* ============================================================
   MEMBERSHIPS — MOBILE SWIPE
   ============================================================ */
@media (max-width: 880px) {
	.tiers .tier-tabs {
		display: none !important;
	}
	.tiers .tier-panels {
		display: flex !important;
		flex-wrap: nowrap !important;
		overflow-x: auto !important;
		overflow-y: hidden !important;
		scroll-snap-type: x mandatory !important;
		-webkit-overflow-scrolling: touch;
		scroll-behavior: smooth;
		touch-action: pan-x pan-y pinch-zoom;
		overscroll-behavior-x: contain;
		gap: 16px;
		padding-bottom: 8px;
	}
	.tiers .tier-panels::-webkit-scrollbar {
		display: none;
	}
	.tiers .tier-panel {
		display: block !important;
		scroll-snap-align: center;
		flex: 0 0 88vw !important;
		min-width: 88vw !important;
		max-width: 88vw !important;
	}
}

/* ============================================================
   BUNDLE OFFER CARDS — CLICKABLE STYLE
   ============================================================ */
body.single-product div.product .whoop-product-bundle-offer[data-qty] {
	cursor: pointer;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
body.single-product div.product .whoop-product-bundle-offer[data-qty]:hover {
	border-color: rgba(47, 163, 242, 0.5);
	box-shadow: 0 0 0 2px rgba(47, 163, 242, 0.18);
}
body.single-product div.product .whoop-product-bundle-offer[data-qty].is-selected {
	border-color: #2FA3F2;
	box-shadow: 0 0 0 2px rgba(47, 163, 242, 0.3);
	background: linear-gradient(180deg, rgba(47, 163, 242, 0.14), rgba(38, 18, 70, 0.08));
}
