/* Custom aesthetic wrapper for the browser simulation cards */
		.explore-hero {
			text-align: center;
			padding: 4rem 0 2rem;
			border-bottom: 1px dashed var(--pico-muted-border-color);
			margin-bottom: 3rem;
		}

		.explore-hero h1 {
			font-size: 3rem;
			font-weight: 800;
			letter-spacing: -0.05rem;
			margin-bottom: 0.5rem;
		}

		.explore-grid {
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
			gap: 2rem;
			margin-bottom: 4rem;
		}

		/* Mock browser window container card */
		.den-card {
			background: var(--pico-card-background-color);
			border: 1px solid var(--pico-muted-border-color);
			border-radius: 12px;
			overflow: hidden;
			display: flex;
			flex-direction: column;
			transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s ease, border-color 0.25s ease;
			text-decoration: none;
			color: inherit;
			height: 100%;
		}

		.den-card:hover {
			transform: translateY(-4px);
			box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
			border-color: var(--pico-primary-hover);
			text-decoration: none;
		}

		/* Mock browser toolbar/chrome bar */
		.browser-header {
			background: rgba(0, 0, 0, 0.05);
			padding: 0.6rem 0.8rem;
			display: flex;
			align-items: center;
			border-bottom: 1px solid var(--pico-muted-border-color);
			gap: 6px;
		}

		html[data-theme="dark"] .browser-header {
			background: rgba(255, 255, 255, 0.05);
		}

		.browser-dot {
			width: 8px;
			height: 8px;
			border-radius: 50%;
			opacity: 0.75;
		}

		.browser-address {
			margin-left: auto;
			font-size: 0.65rem;
			font-family: var(--pico-font-family-monospace);
			background: rgba(0, 0, 0, 0.05);
			padding: 2px 8px;
			border-radius: 4px;
			color: var(--pico-muted-color);
			max-width: 160px;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
		}

		html[data-theme="dark"] .browser-address {
			background: rgba(255, 255, 255, 0.05);
		}

		/* Dynamic site preview (Screenshot or Gradient Fallback) */
		.den-preview {
			height: 140px;
			position: relative;
			display: flex;
			align-items: center;
			justify-content: center;
			overflow: hidden;
			border-bottom: 1px solid var(--pico-muted-border-color);
		}

		/* Add radial texture over gradients */
		.den-preview::before {
			content: "";
			position: absolute;
			inset: 0;
			opacity: 0.08;
			background-image: radial-gradient(var(--pico-color) 1px, transparent 1px);
			background-size: 8px 8px;
		}

		.preview-logo {
			font-size: 2.8rem;
			font-weight: 800;
			z-index: 1;
			color: #ffffff;
			text-shadow: 0 4px 12px rgba(0,0,0,0.25);
			transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
		}

		.den-card:hover .preview-logo {
			transform: scale(1.2) rotate(5deg);
		}

		/* Content card body */
		.den-body {
			padding: 1rem;
			display: flex;
			flex-direction: column;
			flex-grow: 1;
		}

		.den-title {
			font-size: 1.1rem;
			font-weight: 700;
			margin-bottom: 0.3rem;
			white-space: nowrap;
			overflow: hidden;
			text-overflow: ellipsis;
			letter-spacing: -0.02rem;
		}

		.den-description {
			font-size: 0.85rem;
			color: var(--pico-muted-color);
			margin-bottom: 1rem;
			display: -webkit-box;
			-webkit-line-clamp: 2;
			-webkit-box-orient: vertical;
			overflow: hidden;
			line-height: 1.4;
			height: 2.8em; /* Kept fixed to prevent layout shift */
		}

		/* Metric/Footer layout inside card */
		.den-footer {
			margin-top: auto;
			display: flex;
			justify-content: space-between;
			align-items: center;
			font-size: 0.75rem;
			color: var(--pico-muted-color);
			border-top: 1px dashed var(--pico-muted-border-color);
			padding-top: 0.75rem;
		}

		.metric-item {
			display: flex;
			align-items: center;
			gap: 4px;
		}

		.metric-item svg {
			width: 14px;
			height: 14px;
			fill: currentColor;
		}

